src: added user page

This commit is contained in:
2022-08-01 23:18:16 +02:00
parent f4f8e3eb7f
commit ceadc87e16
11 changed files with 214 additions and 244 deletions

12
src/templates/user.html Normal file
View File

@@ -0,0 +1,12 @@
{% extends "template.html" %}
{% block content %}
<div class="container">
<div class="archive">
<h1>User: {{ User }}</h1><br>
{% autoescape off %}
{{ content_string }}
{% endautoescape %}
</div>
</div>
{% endblock %}