22 lines
770 B
PHP
22 lines
770 B
PHP
|
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||
|
<main>
|
||
|
<?php $category = get_category( get_query_var( 'cat' ) );
|
||
|
kspace_cat_breadcrumb_with_rss(single_cat_title('', false), 'folder-open', 'la catégorie', get_category_link( $category->cat_ID ) . '/feed' );
|
||
|
?>
|
||
|
<?php include(TEMPLATEPATH . '/components/posts-list.php'); ?>
|
||
|
|
||
|
</main>
|
||
|
|
||
|
<!-- Sidebar custom pour contenir la description -->
|
||
|
<aside class="sidebar">
|
||
|
<div class="card card-info">
|
||
|
<div class="card-header"><i class="fa fa-folder-open"></i> <?php echo single_cat_title(); ?></div>
|
||
|
<div class="card-body">
|
||
|
<?php the_archive_description() ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php include(TEMPLATEPATH . '/components/sidebar-content.php'); ?>
|
||
|
</aside>
|
||
|
<?php get_footer(); ?>
|