feat: Improved tags; get rid of bootstrap icons and scanlines
- Tags now use horizontal unordered list and have dope hover effect (shoutout to https://libreivan.com) - Get rid of Bootstrap Icons and Scanlines scss files, the former added extra ~90kb to the stylesheet which I think is bloat, one can use emojis for this, and the scanlines were replaced by much simpler code from https://aroace.space - Replace fg09 with fg10; it just makes more sense - Simplify anchor styling - Update woodpecker.yml to work with Woodpecker 2.0
This commit is contained in:
@ -3,17 +3,14 @@
|
||||
{% block content %}
|
||||
<h1>Tags</h1>
|
||||
<small> {{ terms | length }} tags in total </small>
|
||||
<article>
|
||||
<br />
|
||||
<br />
|
||||
{% for tag in terms %}
|
||||
<small>
|
||||
<a class="pill" href="{{ get_taxonomy_url(kind='tags', name=tag.name) }}">
|
||||
<i class="bi bi-tag-fill"></i>
|
||||
{{ tag.name }}
|
||||
</a>
|
||||
<br />
|
||||
</small>
|
||||
{% endfor %}
|
||||
</article>
|
||||
<br />
|
||||
<small>
|
||||
<ul class="tags">
|
||||
{% for tag in terms %}
|
||||
<li>
|
||||
<a class="tag" href="{{ get_taxonomy_url(kind='tags', name=tag.name) }}">{{ tag.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</small>
|
||||
{% endblock content %}
|
||||
|
Reference in New Issue
Block a user