Files
LifeFaq/templates/category.html
Henrik Jess 454de7aae5
Some checks failed
Build, Push, and Deploy to Nomad / docker-nomad (push) Failing after 4m31s
Loads of boiler plating
2024-12-10 16:40:17 +01:00

14 lines
328 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>{{ category_name }} - PortugalFAQ</title>
<link rel="stylesheet" href="{{ url_for('static', path='css/main.css') }}" />
</head>
<body>
<div id="main">
<h1>{{ category_name }}</h1>
<div>{{ content | safe }}</div>
<a href="/">Tilbage til forsiden</a>
</div>
</body>
</html>