c6b7ee61aba11bf2f42f085acb4218b4da78660c
[audio.git] / apps / archive / templates / base.html
1 {% load i18n %}
2 <!DOCTYPE html>
3 <html>
4 <head>
5     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6     <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css" />
7     <title>{% trans "Audiobook repository" %}</title>
8 </head>
9 <body>
10
11 <div id="repo-zones-nav">
12     {% block repo-zones-nav %}&nbsp;{% endblock %}
13 </div>
14
15 <div id="messages">
16 {% block messages %}{% endblock %}
17 </div>
18
19 <div id="content">
20 {% block content %}{% endblock %}
21 </div>
22
23 </body>
24 </html>