binder/binder/templates/base.htm

42 lines
629 B
HTML

<html>
{% block header %}
<head>
<title>Binder DNS Admin</title>
<link rel="stylesheet" type="text/css" href="/files/static/bootstrap.css" />
</head>
{% endblock header %}
{% block navigation %}
<a href="/">Home</a>
<hr>
{% endblock navigation %}
{% block pageheader %}
{% endblock pageheader %}
<body>
{% block errors %}
{% if errors %}
<div class="errors">
Errors were encountered:
<br>
{{ errors }}
{% if error_context %}
<br>
{{ error_context }}
{% endif %}
<hr>
{% endif %}
{% endblock errors %}
<br>
{% block body %}
{% endblock body %}
</body>
{% block footer %}
{% endblock footer %}
</html>