14 lines
561 B
PHP
14 lines
561 B
PHP
<?php get_header(); ?> <!-- ouvrir header,php -->
|
|
<main>
|
|
<div class="flex-that">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="<?php echo site_url(); ?>">kazhnuz.space</a></li><li class="breadcrumb-item" aria-current="page"><span class="active"><i class="fa fa-calendar"></i> <?php echo get_the_archive_title(); ?></span></li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
|
|
<?php include(TEMPLATEPATH . '/components/preview-list.php'); ?>
|
|
</main>
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|