This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze2-wordpress-theme/home.php

35 lines
1.5 KiB
PHP
Raw Normal View History

2022-12-17 19:46:29 +01:00
<?php get_header(); ?>
2023-05-21 15:56:53 +02:00
<main class="fullwidth" id="skip">
2022-12-17 19:46:29 +01:00
<?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 '<section aria-labelledby="title-description">';
echo '<h1 class="page-title" id="title-description">' . get_the_title( $page ) . '</h1>';
2022-12-17 19:46:29 +01:00
echo '<div>' . $page->post_content . '</div>';
echo '</section>';
2022-12-17 19:46:29 +01:00
}
echo '<section aria-labelledby="title-featured">';
echo '<h1 class="page-title" id="title-featured"><i class="icon-fw icon-star" aria-hidden="true"></i> À la une</h1>';
2022-12-17 19:46:29 +01:00
include(TEMPLATEPATH . '/components/featured.php');
echo '</section>';
2022-12-17 19:46:29 +01:00
}
?>
<section aria-labelledby="title-publications">
<h1 class="page-title" id="title-publications"><i class="icon-fw icon-clock-o" aria-hidden="true"></i> Publications</h1>
<?php include(TEMPLATEPATH . '/components/preview-grid.php'); ?>
</section>
2022-12-18 16:10:12 +01:00
<?php if ( !is_paged() ) {
?>
<div class="toast mb-1 bg-soft-info home-toast"><strong class="m-0"><i class="icon-fw icon-info"></i> Note :</strong> Si vous êtes intéressé pour découvrir plus
2022-12-18 16:10:12 +01:00
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
}
?>
2022-12-17 19:46:29 +01:00
</main>
<?php get_footer(); ?>