29 lines
446 B
PHP
29 lines
446 B
PHP
<?php
|
|||
|
|
/**
|
||
|
|
* Fallback template.
|
||
|
|
*
|
||
|
|
* @package TLIG
|
||
|
|
*/
|
||
|
|
|
||
|
|
get_header();
|
||
|
|
?>
|
||
|
|
<div class="scroll">
|
||
|
|
<div class="scroll__head"></div>
|
||
|
|
<div class="scroll__body">
|
||
|
|
<?php
|
||
|
|
while ( have_posts() ) :
|
||
|
|
the_post();
|
||
|
|
?>
|
||
|
|
<article <?php post_class(); ?>>
|
||
|
|
<h1><?php the_title(); ?></h1>
|
||
|
|
<div class="prose"><?php the_content(); ?></div>
|
||
|
|
</article>
|
||
|
|
<?php
|
||
|
|
endwhile;
|
||
|
|
?>
|
||
|
|
</div>
|
||
|
|
<div class="scroll__foot"></div>
|
||
|
|
</div>
|
||
|
|
<?php
|
||
|
|
get_footer();
|