Files
tlig-theme/site/wp-content/themes/tlig/index.php
T

29 lines
446 B
PHP
Raw Normal View History

2026-09-24 18:06:11 +02:00
<?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();