File: /var/www/dinamo-shop/wp-content/themes/dinamo-shop/page.php
<?php
get_header();
?>
<?php echo dinamo_breadcrumbs(); ?>
<?php if( have_posts() ) : ?>
<div class="single-page">
<section class="section">
<div class="container">
<h1 class="h2"><?php the_title(); ?></h1>
<img data-src="<?php echo wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'page_featured' )[0]; ?>" class="main-img img-fluid lazyload" alt=""/>
<?php while( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
</section>
</div>
<?php endif; ?>
<?php get_footer(); ?>