68 lines
1.3 KiB
PHP
Executable File
68 lines
1.3 KiB
PHP
Executable File
<?php
|
|
$block_titling_datas = get_field('block_titling_datas');
|
|
|
|
|
|
$terms = get_terms(array(
|
|
'taxonomy' => 'thematiques',
|
|
'parent' => 0,
|
|
'hide_empty' => false,
|
|
));
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<section class="section-show-thematiques">
|
|
|
|
<!-- Slider main container -->
|
|
<div class="swiper">
|
|
<!-- Additional required wrapper -->
|
|
<div class="swiper-wrapper">
|
|
<!-- Slides -->
|
|
<div class="swiper-slide">Slide 1</div>
|
|
<div class="swiper-slide">Slide 2</div>
|
|
<div class="swiper-slide">Slide 3</div>
|
|
...
|
|
</div>
|
|
<!-- If we need pagination -->
|
|
<div class="swiper-pagination"></div>
|
|
|
|
<!-- If we need navigation buttons -->
|
|
<div class="swiper-button-prev"></div>
|
|
|
|
|
|
<!-- If we need scrollbar -->
|
|
<div class="swiper-scrollbar"></div>
|
|
</div>
|
|
|
|
|
|
<div class="section_titling">
|
|
<h2 class="section_titling__title"><?php echo $block_titling_datas['title'] ?></h2>
|
|
<h3 class="section_titling__subtitle"><?php echo $block_titling_datas['subtitle'] ?></h3>
|
|
</div>
|
|
|
|
<div class="thematiques-container">
|
|
<?php foreach ($terms as $term) : ?>
|
|
<?php
|
|
|
|
|
|
|
|
get_template_part(
|
|
'template-components/card-thematique',
|
|
null,
|
|
array(
|
|
'thematique' => $term,
|
|
'post_ID' => $post_datas->ID,
|
|
'post_title' => $post_datas->post_title,
|
|
'post_excerpt' => $post_datas->post_excerpt,
|
|
)
|
|
);
|
|
?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|