carhop__dynamiques-theme__P.../single-articles.php
Nonimart 5fb6493890
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE First reading test
2025-09-25 15:58:21 +02:00

79 lines
2.1 KiB
PHP

<?php
get_header();
$revueID = get_field('related_revue', get_the_ID());
?>
<div class="page--single-articles" data-article-id="<?php echo get_the_ID(); ?>">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('template-parts/post-header'); ?>
<?php get_template_part('template-parts/articles/article-toolbar'); ?>
<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">
<button id="speak-btn">🔊 Lire en vocal</button>
<!-- Vitesse de lecture -->
<input type="range" id="speech-rate" min="0.1" max="2" step="0.1" value="0.9">
<!-- Tonalité -->
<input type="range" id="speech-pitch" min="0" max="2" step="0.1" value="1">
<!-- Volume -->
<input type="range" id="speech-volume" min="0" max="1" step="0.1" value="1">
<!-- Sélection de voix -->
<select id="speech-voice"></select>
<?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>
<!-- #### 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>
</article>
</div>
<?php
get_footer();