- 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
37 lines
952 B
HTML
37 lines
952 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Posts with tag “{{ term.name }}”</h1>
|
|
<small>
|
|
<a class="link-page" href="{{ config.base_url }}/tags">See all tags</a>
|
|
<br />
|
|
{{ term.pages | length }} posts in total
|
|
</small>
|
|
<article>
|
|
{% for page in term.pages %}
|
|
<h3>
|
|
<a class="link-page" href="{{ page.permalink | safe }}">
|
|
{{ page.title }}
|
|
</a>
|
|
</h3>
|
|
<small>
|
|
<time datetime='{{ page.date | date(format='%+') }}' pubdate>
|
|
{{- page.date | date(format=config.extra.date_format) -}}
|
|
</time>
|
|
{%- if page.taxonomies %}
|
|
{%- for name, taxon in page.taxonomies %}
|
|
<ul class="tags">
|
|
<span>• </span>
|
|
{%-for item in taxon %}
|
|
<li>
|
|
<a class="tag" href="{{ get_taxonomy_url(kind=name, name=item) }}">{{ item }}</a>
|
|
</li>
|
|
{%- endfor %}
|
|
</ul>
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
</small>
|
|
{% endfor %}
|
|
</article>
|
|
{% endblock content %}
|