switching to Bootstrap 5

This commit is contained in:
SG
2025-06-12 17:20:31 +03:00
parent 47badd9d5a
commit ab1109a900
3 changed files with 28 additions and 21 deletions

View File

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