28 lines
591 B
HTML
28 lines
591 B
HTML
|
{% load static %}
|
||
|
{% load i18n %}
|
||
|
{% get_current_language as current_language %}
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html {% if current_language %}lang="{{ current_language }}"{% endif %}>
|
||
|
<head>
|
||
|
{% include "_partials/head.html" %}
|
||
|
{% block "extra_head" %}{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include "_partials/header.html" %}
|
||
|
|
||
|
<main>
|
||
|
{% include "_partials/messages.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</main>
|
||
|
|
||
|
<div id="ens_logo_foot">
|
||
|
{% include "_partials/ens_logo.html" %}
|
||
|
</div>
|
||
|
|
||
|
{% block "extra_foot" %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|