This commit is contained in:
SG
2025-06-12 02:47:25 +03:00
parent a0e858f416
commit 4927f9907d

View File

@@ -14,6 +14,11 @@
<h1>{{ content_item.title }}</h1> <h1>{{ content_item.title }}</h1>
{% endif %} {% endif %}
<article>{{ content_item.html | safe }}</article> <article>{{ content_item.html | safe }}</article>
<div id="categories" class="row">
{% for category in categories %}
<a href="{{ parent_path }}categories/{{ category }}.html" class="mx-2 small text-muted">{{ category }} </a>
{% endfor %}
</div>
<a href="../index.html" class="btn btn-secondary mt-4">← Back</a> <a href="../index.html" class="btn btn-secondary mt-4">← Back</a>
</div> </div>
{% endblock %} {% endblock %}