feat: various style improvements to catalogue
This commit is contained in:
parent
fbf6bb2976
commit
1ffc6d1ede
13 changed files with 77 additions and 17 deletions
|
@ -6,4 +6,13 @@ title: Catalogue
|
|||
|
||||
<h1>Catalogue</h1>
|
||||
{% set items = collections.catalogue | reverse %}
|
||||
{% set catalogueTypes = collections.catalogueByType | keys %}
|
||||
<ul class="[ flex list-none gap-0.5 p-0 ]">
|
||||
{% for type in catalogueTypes %}
|
||||
<li>
|
||||
<a class="[ pill ] [ flex px-1 py-0.5 gap-0.5 ]"
|
||||
href="/catalogue/{{ type | pluralize }}">{{ type | pluralize }}<span class="[ pill-count ]">{{ collections.catalogueByType[ type ] | length }}</span></a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% include "partials/catalogue.html" %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue