File: /var/www/zaklada/wp-content/themes/zaklada/page-default.php
<?= get_header();
/*
* Template Name: Simple default page
*
*/
?>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<main>
<article class="page-default">
<div class="container">
<div class="row">
<div class="col-12 col-lg-8 offset-lg-2 text-center">
<h1><?= the_title(); ?></h1>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-8 offset-lg-2">
<div class="">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</article>
</main>
<?php endwhile;
endif;
?>
<?= get_footer(); ?>