20 lines
451 B
Twig
20 lines
451 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}}" >
|
|
{{cat.name}}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<div class="grid">
|
|
{% for item in posts %}
|
|
{% include 'components/thumbnails/thumbnails.twig'%}
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|