<?php
/**
* Template Name: about
*
*/
get_header();
?>
<section class="welcome-section welcome-section-about ">
<div class="about-page-div">
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail( 'full', array( 'class' => 'banner-photo' ) ); // show featured image
}
?>
<div class="about-page-info">
<h3>За нас</h3>
<p>Премиум, вредности, креативност</p>
</div>
</div>
</section>
<section class="about-us-page">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php
if (have_posts()):
while (have_posts()) : the_post();
the_content();
endwhile;
else:
echo '<p>Sorry, no posts matched your criteria.</p>';
endif;
?>
</div>
</div>
</div>
</section>
<?php
get_footer();
?>