22 lines
540 B
Twig
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 %}
|