47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<?php get_header(); ?>
|
|
<main class="fullwidth">
|
|
<?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"><i class="fa fa-fw fa-star" aria-hidden="true"></i> À la une</h1>';
|
|
include(TEMPLATEPATH . '/components/featured.php');
|
|
}
|
|
?>
|
|
<h1 class="page-title"><i class="fa fa-fw fa-clock-o" aria-hidden="true"></i> Publications</h1>
|
|
<?php include(TEMPLATEPATH . '/components/preview-grid.php'); ?>
|
|
|
|
<?php if ( !is_paged() ) {
|
|
?>
|
|
<div class="toast mb-1 bg-blue home-toast"><strong class="m-0"><i class="fa fa-fw fa-info"></i> Note :</strong> Si vous êtes intéressé pour découvrir plus
|
|
de contenus trouvé sur internet, vous pouvez aussi regarder mon <a href="http://shaarli.kazhnuz.space/">Shaarli</a>, qui sert plus à
|
|
partager des petites découverte rigolote ou intéressantes.</div>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<nav class="container menu bg-light fg-dark categories d-block d-none-sm">
|
|
<ul class="f-around">
|
|
<?php
|
|
$categories = get_categories( array(
|
|
'orderby' => 'name',
|
|
'order' => 'ASC'
|
|
) );
|
|
|
|
foreach( $categories as $category ) {?>
|
|
<li>
|
|
<a class="menu-item" href="<?php echo get_category_link($category->term_id) ?>"><span><i class="fa fa-fw fa-folder"></i> <?php echo $category->name ?></span></a>
|
|
</li>
|
|
<?php }
|
|
?>
|
|
</ul>
|
|
</nav>
|
|
|
|
|
|
</main>
|
|
<?php get_footer(); ?>
|