summaryrefslogtreecommitdiff
path: root/common
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
parentdf95abeb7a4a967553b08b3f4bbc5065aa4c63e2 (diff)
downloadwww-f951d9e2660ab3c12ed5fe47165c027ee309ae60.tar.gz
www-f951d9e2660ab3c12ed5fe47165c027ee309ae60.tar.bz2
www-f951d9e2660ab3c12ed5fe47165c027ee309ae60.zip
factor out base template
Diffstat (limited to 'common')
-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 @@
+<!DOCTYPE html>
+<html lang="{{ lang }}">
+ <head>
+ <meta charset="UTF-8"/>
+ <title>{{ _("GNU Taler") }}</title>
+ <meta name="description" content="{{ _('Taxable Anonymous Libre Electronic Reserves') }}" />
+ {% include "common/header.j2.inc" %}
+ </head>
+ <body>
+ {% include "common/navigation.j2.inc" %}
+ {% block body_content %}{% endblock %}
+ <div class="container-fluid">
+ <div class="container">
+ {% include "common/footer.j2.inc" %}
+ </div>
+ </div>
+ </body>
+</html>