Viewport tag
[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     <meta name="viewport" content="width=device-width, initial-scale=1">
8
9     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
10
11     <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}" />
12     <title>{% trans "Audiobook repository" %}</title>
13 </head>
14 <body>
15
16 <header class="navbar bg-light">
17     {% block repo-zones-nav %}&nbsp;{% endblock %}
18 </header>
19
20
21 <div>
22 {% block messages %}{% endblock %}
23 </div>
24
25 <div class="container">
26 {% block content %}{% endblock %}
27 </div>
28
29 </body>
30 </html>