Add some better logic to the resizing, add a better contacts page. sidebar hiding still in the works

This commit is contained in:
Bun 2025-07-02 21:44:35 -04:00
parent d8893f0463
commit 67de08a5b8
19 changed files with 180 additions and 99 deletions

View file

@ -0,0 +1,21 @@
{% extends "base.html" %}
{%- block title -%}
{{ title_macros::title(page_title="Tags", main_title=config.title) }}
{%- endblock -%}
{% block content %}
<div class="post">
<h1 class="post-title">all tags</h1>
<ul>
{% for term in terms %}
<li class="tag-list">
<a href="{{ term.permalink | safe }}">
{{ term.name }} ({{ term.pages | length }} post{{ term.pages | length | pluralize }})
</a>
</li>
{% endfor %}
</ul>
</div>
{% endblock content %}