33 lines
No EOL
825 B
PHP
Executable file
33 lines
No EOL
825 B
PHP
Executable file
<?php get_header() ?>
|
|
<?php while (have_posts()) : the_post() ?>
|
|
<div class="page-heading area">
|
|
<ul class="circles">
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
</ul>
|
|
<div class="page-heading__inner">
|
|
<div class="container">
|
|
<?php the_post_thumbnail(); ?>
|
|
<h1 class="page-heading__title"><?php the_title() ?></h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<main class="site-content">
|
|
<!-- Section - How to play -->
|
|
<div class="section-content">
|
|
<div class="container">
|
|
<?php the_content('' . __(' <footer class="post__footer"><div class="btn btn-outline-secondary">Olvass Tovább</a></div></footer> ', 'sandbox') . ''); ?>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php endwhile ?>
|
|
<?php get_footer() ?>
|