This commit is contained in:
SG
2025-06-11 13:48:08 +03:00
parent f9c14b3e2a
commit eeb1462210
4 changed files with 49 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
{% extends "default.html" %}
{% block menu_links %}
<a href="index.html">Home</a>
<a href="static/about.html">About</a>
{% endblock %}
{% block content %}
<div class="container">
<div class="row"></div>
{% for category in categories_list %}
<a href="{{category}}.html">{{ category }}</a>
{% endfor %}
</div>
</div>
{% endblock %}