20 lines
596 B
PHP
20 lines
596 B
PHP
<?php /* Template Name: page-about */ ?>
|
|
<?php get_header(); ?> <!-- ouvrir header,php -->
|
|
<main id="skip">
|
|
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
|
|
|
|
<article class="article-content container-article" 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>
|
|
<aside class="sidebar">
|
|
<?php include(TEMPLATEPATH . '/components/sidebar-content.php'); ?>
|
|
</aside>
|
|
<?php get_footer(); ?>
|