2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-14 11:05:32 +00:00

Add in tags / categories again

This commit is contained in:
Matthias Mair
2023-01-21 03:10:40 +01:00
parent f617fcd447
commit 45e0aaa7ad
2 changed files with 84 additions and 0 deletions

42
tags.html Normal file
View File

@ -0,0 +1,42 @@
---
title: Plugins by Tags
---
{% assign all_tags = "" | split: "/" %}
{% for plugin in site.repo %}
{% for tag in plugin.tags %}
{% assign preprocessed = tag | strip | downcase %}
{% unless preprocessed == "" %}
{% assign all_tags = all_tags | push: preprocessed %}
{% endunless %}
{% endfor %}
{% endfor %}
{% assign all_tags = all_tags | uniq | sort %}
<i class="fa fa-tag"></i>
{% for tag in all_tags %}
{% unless tag == "" %}
<a class="label" href="{{ '/tags/' | prepend: site.baseurl }}#{{ tag | slugify }}">
<span class="badge rounded-pill bg-info">{{ tag }}</span>
</a>
{% endunless %}
{% endfor %}
{% for tag in all_tags %}
{% unless tag == "" %}
<h2 id="{{ tag | slugify }}">{{ tag }}</h2>
<div>
{% for plugin in site.repo %}
{% assign plugin_tags = "" | split: "/" %}
{% for tag in plugin.tags %}
{% assign lower_tag = tag | downcase %}
{% assign plugin_tags = plugin_tags | push: lower_tag %}
{% endfor %}
{% if plugin_tags contains tag %}
{% include plugin_card.html plugin=plugin %}
{% endif %}
{% endfor %}
</div>
{% endunless %}
{% endfor %}