Initial commit

This commit is contained in:
2026-05-12 23:33:46 +02:00
commit ccf32dcece
104 changed files with 17439 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{% if section_posts %}
<section class="swiper-section full-block" data-swiper>
<div class="section-title">
<p>{{ section_title }}</p>
</div>
<div class="swiper_content_controls">
<div class="swiper-button-prev">
<i class="iconoir-arrow-left"></i>
</div>
<div class="swiper">
<div class="swiper-wrapper">
{% for post in section_posts %}
<div class="swiper-slide">
{% include 'partials/post-card.twig' with { post: post, card: section_cards[post.ID], show_category: true } %}
</div>
{% endfor %}
</div>
</div>
<div class="swiper-button-next">
<i class="iconoir-arrow-right"></i>
</div>
</div>
<div class="button-annonces">
<a href="{{ all_link }}" class="link-button">{{ all_label }}</a>
</div>
</section>
{% endif %}