parent
6632203fdf
commit
30dce209f0
9 changed files with 13 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<div class="flex-that">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<?php
|
||||
$category = get_category( get_query_var( 'cat' ) );
|
||||
$cat_id = $category->cat_ID; ?>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<?php
|
||||
$category = get_category( get_query_var( 'cat' ) );
|
||||
$cat_id = $category->cat_ID; ?>
|
||||
|
|
2
home.php
2
home.php
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?>
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
|
||||
<!-- Recuperation de la page de home -->
|
||||
<?php if ( !is_paged() ) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?>
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<h1 class="page-title">Publications</h1>
|
||||
<?php include(TEMPLATEPATH . '/components/preview-list.php'); ?>
|
||||
</main>
|
||||
|
|
8
page.php
8
page.php
|
@ -1,15 +1,15 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
|
||||
|
||||
|
||||
<article class="article-content" id="post-<?php the_ID(); ?>">
|
||||
<h1 class="page-title"><?php the_title(); ?></h1>
|
||||
|
||||
|
||||
<div class="article-body">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
|
||||
<?php endwhile; ?>
|
||||
<?php endif; ?>
|
||||
</main>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<h1 class="page-title"><i class="fa fa-fw fa-search"></i><?php _e('', 'sandbox') ?> Recherche pour le terme « <?php echo get_search_query(); ?> »</h1>
|
||||
|
||||
|
||||
<?php include(TEMPLATEPATH . '/components/posts-list.php'); ?>
|
||||
</main>
|
||||
<?php get_sidebar(); ?>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
|
||||
<div class="flex-that">
|
||||
<nav aria-label="breadcrumb">
|
||||
|
|
2
tag.php
2
tag.php
|
@ -1,5 +1,5 @@
|
|||
<?php get_header(); ?> <!-- ouvrir header,php -->
|
||||
<main class="col-md-8">
|
||||
<main>
|
||||
<?php $tag = get_category( get_query_var( 'tag' ) );
|
||||
$tag_id = $tag->ID;?>
|
||||
<div class="flex-that">
|
||||
|
|
Reference in a new issue