25 lines
557 B
HTML
25 lines
557 B
HTML
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% block title %}
|
|
{% endblock title %}
|
|
<title>{{ site_name }}</title>
|
|
{% include "common_libs.html" %}
|
|
<style>
|
|
.controls input {
|
|
width: unset;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<main class="container">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</main>
|
|
{% include "_footer.html" %}
|
|
</body>
|
|
</html>
|