feat: rename includes and data directories

This commit is contained in:
Devin Haska 2025-03-16 11:43:16 -07:00
parent 864bc7be71
commit 408e859ef4
41 changed files with 7 additions and 9 deletions

View file

@ -1,14 +0,0 @@
{% macro grid(data, shape = "vertical") %}
<ul class="media-grid {{ shape }} list-none p-0">
{% for item in data %}
<li class="radius-0.5">
<a href="{{ item.url }}">
{% if item.data.image %}<img src="{{ item.data.image }}" alt="" />{% endif %}
<div class="meta font-size-s line-height-s flex items-end px-0.5 pb-0.5">
<span class="meta-text">{{ item.data.title }}</span>
</div>
</a>
</li>
{% endfor %}
</ul>
{% endmacro %}