Files
LifeFaq/templates/category.html
Henrik Jess 492d933119
Some checks failed
Build, Push, and Deploy to Nomad / docker-nomad (push) Has been cancelled
Loads of boiler plating
2024-12-10 17:09:37 +01:00

12 lines
239 B
HTML

{% extends "base_template.html" %}
{% block title %}{{ category_name }} - PortugalFAQ{% endblock %}
{% block content %}
<header class="main">
<h1>{{ category_name }}</h1>
</header>
<div>
{{ content | safe }}
</div>
{% endblock %}