8 lines
276 B
PHP
8 lines
276 B
PHP
<?php get_header(); ?> <!-- ouvrir header,php -->
|
|
<main class="col-md-8">
|
|
<h1 class="page-title"><?php echo get_the_archive_title(); ?></h1>
|
|
|
|
<?php include(TEMPLATEPATH . '/components/posts-list.php'); ?>
|
|
</main>
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|