18 lines
604 B
PHP
18 lines
604 B
PHP
|
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||
|
<main class="col-md-8">
|
||
|
<h1 class="page-title page-title-flex">
|
||
|
<span><i class="fa fa-fw fa-folder"></i> <?php echo single_cat_title(); ?></span>
|
||
|
<?php
|
||
|
$category = get_category( get_query_var( 'cat' ) );
|
||
|
$cat_id = $category->cat_ID;
|
||
|
|
||
|
echo '<a href="' . get_category_link( $cat_id ) . 'feed/" title="RSS de la categorie" />' . '<i class="fa fa-fw fa-rss"></i></a>' ;
|
||
|
?>
|
||
|
</h1>
|
||
|
|
||
|
<?php include(TEMPLATEPATH . '/components/posts-list.php'); ?>
|
||
|
|
||
|
</main>
|
||
|
<?php get_sidebar(); ?>
|
||
|
<?php get_footer(); ?>
|