blog/_includes/horizontal_list.html
2024-06-11 12:17:26 +02:00

10 lines
195 B
HTML

<ul class="horizontal-list">
{% for item in include.collection %}
<li>
<a href="{{ item.url }}">
{{ item.title }}
</a>
&nbsp;&nbsp;
</li>
{% endfor %}
</ul>