31 lines
No EOL
608 B
HTML
31 lines
No EOL
608 B
HTML
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<html lang="{{ LANGUAGE_CODE }}" data-theme="dark">
|
|
{% include 'layouts/head.html' %}
|
|
<body>
|
|
|
|
<div id="app">
|
|
<div class="uk-flex uk-flex-column min-height-100vh">
|
|
{% include 'layouts/header.html' %}
|
|
|
|
<div class="uk-flex-1">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include 'layouts/footer.html' %}
|
|
</div>
|
|
|
|
{% include 'layouts/sidebar.html' %}
|
|
</div>
|
|
|
|
|
|
{% include 'layouts/foot.html' %}
|
|
|
|
{% block javascript %}{% endblock %}
|
|
|
|
</body>
|
|
</html> |