/home/bdqbpbxa/demo-subdomains/baginskiy2.goodface.com.ua/wp-content/themes/baginskiy/news.php
<?php /* Template Name: News */ ?>

<?php get_header(); ?>
    
	<div class="content">
        <div class="content-title"><?php the_title(); ?></div>
        <div class="content-inner articles">

        <?php if (have_rows('news')): ?>

            <?php while (have_rows('news')) : the_row(); ?>

            <div class="article">
                <div class="article-image">
                    <?php $news_image = get_sub_field('news-image'); ?>
                    <img src="<?php echo $news_image['url']; ?>" alt="<?php echo $news_image['alt'] ?>">
                </div>
                <div class="article-text">
                    <div class="content-subtitle primary-subtitle"><?php the_sub_field('news-title'); ?></div>
                    <div class="content-date"><?php the_sub_field('news-date'); ?></div>
                    <div class="content-text"><?php the_sub_field('news-text'); ?></div>
                </div>
            </div>

            <?php endwhile; ?>

        <?php endif; ?>
        
        </div>
    </div>

<?php get_footer(); ?>