aboutsummaryrefslogtreecommitdiff
path: root/common/base.j2
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-03-06 00:21:07 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-03-06 00:32:35 +0100
commitf951d9e2660ab3c12ed5fe47165c027ee309ae60 (patch)
tree63cdcc9dedae1975e2052b11fc2e3150fc294354 /common/base.j2
parentdf95abeb7a4a967553b08b3f4bbc5065aa4c63e2 (diff)
downloadwww-f951d9e2660ab3c12ed5fe47165c027ee309ae60.tar.gz
www-f951d9e2660ab3c12ed5fe47165c027ee309ae60.zip
factor out base template
Diffstat (limited to 'common/base.j2')
-rw-r--r--common/base.j218
1 files changed, 18 insertions, 0 deletions
diff --git a/common/base.j2 b/common/base.j2
new file mode 100644
index 00000000..58114b5d
--- /dev/null
+++ b/common/base.j2
@@ -0,0 +1,18 @@
1<!DOCTYPE html>
2<html lang="{{ lang }}">
3 <head>
4 <meta charset="UTF-8"/>
5 <title>{{ _("GNU Taler") }}</title>
6 <meta name="description" content="{{ _('Taxable Anonymous Libre Electronic Reserves') }}" />
7 {% include "common/header.j2.inc" %}
8 </head>
9 <body>
10 {% include "common/navigation.j2.inc" %}
11 {% block body_content %}{% endblock %}
12 <div class="container-fluid">
13 <div class="container">
14 {% include "common/footer.j2.inc" %}
15 </div>
16 </div>
17 </body>
18</html>