Reduce the ugly, just bootstrap things.
[audio.git] / src / archive / templates / base.html
1 <!DOCTYPE html>
2 {% load i18n static %}
3
4 <html>
5 <head>
6     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
7
8     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
9
10     <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}" />
11     <title>{% trans "Audiobook repository" %}</title>
12 </head>
13 <body>
14
15 <header class="navbar bg-light">
16     {% block repo-zones-nav %}&nbsp;{% endblock %}
17 </header>
18
19
20 <div>
21 {% block messages %}{% endblock %}
22 </div>
23
24 <div class="container">
25 {% block content %}{% endblock %}
26 </div>
27
28 </body>
29 </html>