Adrianux.net/templates/homepage.html

10 lines
324 B
HTML
Raw Normal View History

2024-11-15 07:26:13 +00:00
{% extends "base.html" %}
2024-11-28 07:09:51 +00:00
{% block title %}Homepage{% endblock %}
2024-11-15 07:26:13 +00:00
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
2024-11-28 11:12:53 +00:00
<p>This is Adrian's homepage, checkout his running services and their state <a href="monitoring">here</a></p>
<p>Yes, Adrian is refering to himself in the third person.</p>
2024-11-15 07:26:13 +00:00
{% endblock %}