WP test container created

This commit is contained in:
jasa
2026-09-24 18:06:11 +02:00
parent 3ee471bf39
commit e2442d1d15
44 changed files with 2244 additions and 47 deletions
+28
View File
@@ -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();