cas-eleves/customize_cas/templates/cas_server/base.html

28 lines
591 B
HTML
Raw Normal View History

2020-03-24 15:38:16 +01:00
{% 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>