Initial commit
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user