9 lines
259 B
HTML
9 lines
259 B
HTML
|
{% 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 %}
|