9 lines
338 B
Django/Jinja
9 lines
338 B
Django/Jinja
{% extends "base.j2" %}
|
|
{% 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="https://cloud.adrianux.net">here</a></p>
|
|
<p>Yes, Adrian is refering to himself in the third person.</p>
|
|
{% endblock %}
|