52dc0b9c5c
Fixes #30 Fixes #35 Fixes #36 Fixes #38 Fixes #40 Fixes #43 Fixes #44 Fixes #46 Fixes #47 Fixes #49 Fixes #51 Fixes #53
21 lines
676 B
PHP
21 lines
676 B
PHP
<?php get_header(); ?>
|
|
<main id="skip">
|
|
<?php include(TEMPLATEPATH . '/components/globalflag.php'); ?>
|
|
|
|
<!-- Recuperation de la page de home -->
|
|
<?php if ( !is_paged() ) {
|
|
$page = get_page_by_path( 'home' );
|
|
if ($page != null) {
|
|
echo '<h1 class="page-title">' . get_the_title( $page ) . '</h1>';
|
|
echo '<div>' . $page->post_content . '</div>';
|
|
}
|
|
echo '<h1 class="page-title">Dernier article</h1>';
|
|
include(TEMPLATEPATH . '/components/featured.php');
|
|
}
|
|
?>
|
|
<h1 class="page-title">Publications</h1>
|
|
<?php include(TEMPLATEPATH . '/components/preview-list.php'); ?>
|
|
|
|
</main>
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|