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

19
content-noticia.php Normal file
View File

@@ -0,0 +1,19 @@
<article class="noticia-item">
<?php if (has_post_thumbnail()) : ?>
<div class="noticia-imagem">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('noticia-thumb'); ?>
</a>
</div>
<?php endif; ?>
<div class="noticia-conteudo">
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<div class="noticia-meta">
<span><?php echo get_the_date(); ?></span>
<span><?php the_author(); ?></span>
</div>
<div class="noticia-resumo"><?php the_excerpt(); ?></div>
<a href="<?php the_permalink(); ?>" class="leia-mais"><?php _e('Leia mais', 'intranet'); ?></a>
</div>
</article>