Initial commit

This commit is contained in:
2025-08-08 22:32:35 -03:00
commit c15fbe69dd
24 changed files with 2406 additions and 0 deletions

26
page.php Normal file
View File

@@ -0,0 +1,26 @@
<?php get_header(); ?>
<main>
<div class="container">
<section class="page-content">
<?php
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile;
else :
echo '<p>' . __('Nenhuma página encontrada.', 'intranet') . '</p>';
endif;
?>
</section>
<?php get_sidebar(); ?>
</div>
</main>
<?php get_footer(); ?>