temwp-kea/index.php

19 líneas
295 B
PHP
Original Vista normal Històric

2023-05-21 23:02:51 +02:00
<?php get_header();?>
<div id="principal">
<div id="menulateral">Menú lateral</div>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
?>
<h1><?php the_title();?></h1>
<p><?php the_content();?></p>
<?php
endwhile;
endif;
?>
</div>
<?php get_footer();?>