add a guide topics system

This commit is contained in:
2025-12-05 13:53:21 +03:00
parent 65abea2093
commit db677abaa5
17 changed files with 405 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% block title %}guides - {{ category | title }}{% endblock %}
{% block content %}
<div class="darkbg settings-container">
<h1 class="thread-title">All guides in category "{{ category | replace('-', ' ') | title }}"</h1>
<ul>
{% for page in pages %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
<div>
<a href="{{ url_for('guides.guides_index') }}">&larr; All guide categories</a>
</div>
</div>
{% endblock %}