feat: New collection and view

- Add art collection
- Move views to art
- Add new view
This commit is contained in:
sthag 2026-04-20 20:13:58 +02:00
parent 5cd55ab2bc
commit 0f92174143
4 changed files with 199 additions and 2 deletions

View file

@ -64,6 +64,17 @@ title: Index
{% endfor %}
</ul>
</section>
<section>
<h3>Art</h3>
<ul class="block link">
{% assign artByTitle = collections.demoArt | sort: 'data.title' %}
{% for link in artByTitle %}
<li>
<a href="{{ link.page.url }}">{{ link.data.title }}</a>
</li>
{% endfor %}
</ul>
</section>
</div>
</div>
</div>