9 lines
324 B
HTML
9 lines
324 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Homepage{% endblock %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<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>
|
|
{% endblock %}
|