blog/_includes/horizontal_list.html

11 lines
195 B
HTML
Raw Permalink Normal View History

2024-06-11 12:17:26 +02:00
<ul class="horizontal-list">
{% for item in include.collection %}
<li>
<a href="{{ item.url }}">
{{ item.title }}
</a>
&nbsp;&nbsp;
</li>
{% endfor %}
</ul>