Reorganize code.
[audio.git] / src / archive / templates / base.html
diff --git a/src/archive/templates/base.html b/src/archive/templates/base.html
new file mode 100755 (executable)
index 0000000..5e0053f
--- /dev/null
@@ -0,0 +1,24 @@
+{% load i18n %}
+<!DOCTYPE html>
+<html>
+<head>
+    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
+    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css?20110808" />
+    <title>{% trans "Audiobook repository" %}</title>
+</head>
+<body>
+
+<div id="repo-zones-nav">
+    {% block repo-zones-nav %}&nbsp;{% endblock %}
+</div>
+
+<div id="messages">
+{% block messages %}{% endblock %}
+</div>
+
+<div id="content">
+{% block content %}{% endblock %}
+</div>
+
+</body>
+</html>