carhop__dynamiques-theme__P.../template-tutorial.php
Nonimart aee37d0d64
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Big toolbar refactor to handle share like and cita buttons directly from carhop theme
2026-05-28 17:53:23 +02:00

59 lines
1.7 KiB
PHP

<?php
/* Template Name: Tutoriel */
get_header();
?>
<div class="page-single page--single-articles single-articles" data-post-id="<?php echo get_the_ID(); ?>">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="content-wrapper" data-active-tab="article">
<aside class="sidebar">
<div class="search-field">
<input type="text" placeholder="Rechercher">
</div>
<?php get_template_part('template-parts/articles/article-tags'); ?>
<?php get_template_part('template-parts/articles/index-panel'); ?>
</aside>
<div class="content-area">
<?php get_template_part('template-parts/articles/article-references', null, array(
'postId' => get_the_ID()
)); ?>
<?php get_template_part('template-parts/articles/article-authors', null, array(
'postId' => get_the_ID()
)); ?>
<?php get_template_part('template-parts/articles/article-informations', null, array(
'revueID' => $revueID
)); ?>
<?php get_template_part('template-parts/revues/table-matiere-revue', null, array(
'revueID' => $revueID
)); ?>
<?php get_template_part('template-parts/articles/article-content', null, array(
'ID' => get_the_ID()
)); ?>
</div>
</div>
<!-- #### RECOMMANDATIONS #### -->
<?php echo do_blocks('<!-- wp:dynamiques-blocks/nos-recommandations /-->'); ?>
<!-- #### EXPLORE TAGS #### -->
<?php get_template_part('template-parts/components/explore-tags'); ?>
<!-- #### INFOLETTRE #### -->
<?php get_template_part('template-parts/components/subscribe-infolettre'); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();