Files
lamine_wp/web/app/themes/la_mine/templates/agenda.twig
T
2020-06-24 15:41:25 +02:00

22 lines
540 B
Twig

{% extends "base.twig" %}
{% block content %}
{% include 'components/title_page.twig' %}
<section>
<ul class="cat-list d-flex flex-wrap button-group filter-button-group">
{% for cat in terms %}
<li data-filter=".{{cat.slug}}">
| <a href="#">{{cat.name}}</a>
</li>
{% endfor %}
</ul>
<div class="row align-items-start grid">
<!-- <div class="col-md"> -->
{% for item in posts %}
{% include 'components/thumbnails/thumbnails.twig'%}
{% endfor %}
<!-- </div> -->
</div>
</section>
{% endblock %}