feat: templates

This commit is contained in:
ahoemann 2024-11-15 08:26:13 +01:00
parent 7045e377fb
commit 8cddba74b5
8 changed files with 91 additions and 42 deletions

8
templates/homepage.html Normal file
View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block title %}About{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<p>This is Adrian's homepage, checkout this servers list of running services <a href="monitoring">here</a></p>
{% endblock %}