WP test container created
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?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();
|
||||
Reference in New Issue
Block a user