43 lines
985 B
PHP
43 lines
985 B
PHP
|
<?php get_header() ?>
|
||
|
|
||
|
<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 while (have_posts()) : the_post() ?>
|
||
|
<h1 class="page-heading__title"><?php the_title() ?></h1>
|
||
|
<div class="breadcrumb breadcrumb-item active">
|
||
|
<?php if (function_exists('get_breadcrumb')) {
|
||
|
get_breadcrumb();
|
||
|
} ?>
|
||
|
</div>
|
||
|
<?php endwhile ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<main class="site-content">
|
||
|
|
||
|
<!-- Section - How to play -->
|
||
|
<div class="section-content">
|
||
|
<div class="container">
|
||
|
<center>
|
||
|
<h2 class="section-heading__title"><?php the_title() ?></h2>
|
||
|
</center>
|
||
|
<div class="section-heading section-heading--divider-top"></div>
|
||
|
<?php the_content('' . __('<br><span class="btn btn-inverse">View More</a>', 'sandbox') . ''); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php get_footer() ?>
|