feat: New collection and view
- Add art collection - Move views to art - Add new view
This commit is contained in:
parent
5cd55ab2bc
commit
0f92174143
4 changed files with 199 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue