summaryrefslogtreecommitdiff
path: root/talerbank/app/templates/base.html
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-10-16 22:18:14 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-10-16 22:18:14 +0200
commit063c448816f9ea70f7609cd4df1d5f882aec92c8 (patch)
treee8da297eb50a3c90638679ebf5e443f7fe521923 /talerbank/app/templates/base.html
parent800eeb1531e7dbc627f69e1c816279e094f1a797 (diff)
downloadbank-063c448816f9ea70f7609cd4df1d5f882aec92c8.tar.gz
bank-063c448816f9ea70f7609cd4df1d5f882aec92c8.tar.bz2
bank-063c448816f9ea70f7609cd4df1d5f882aec92c8.zip
(part of) templates extends a base template
Diffstat (limited to 'talerbank/app/templates/base.html')
-rw-r--r--talerbank/app/templates/base.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/talerbank/app/templates/base.html b/talerbank/app/templates/base.html
new file mode 100644
index 0000000..db083a8
--- /dev/null
+++ b/talerbank/app/templates/base.html
@@ -0,0 +1,46 @@
+<!--
+ This file is part of GNU TALER.
+ Copyright (C) 2014, 2015, 2016 INRIA
+
+ TALER is free software; you can redistribute it and/or modify it under the
+ terms of the GNU Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1, or (at your option) any later version.
+
+ TALER is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License along with
+ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+
+ @author Marcello Stanisci
+-->
+
+{% load staticfiles %}
+
+<html>
+ <head>
+ <title>{{ currency }} Bank - Taler Demo</title>
+ <link rel="stylesheet" type="text/css" href="/static/web-common/style.css">
+ <link rel="stylesheet" type="text/css" href="/static/style.css">
+ <script src="{% static "web-common/taler-wallet-lib.js" %}" type="application/javascript"></script>
+ {% block head %} {% endblock %}
+ </head>
+ <body>
+ <header>
+ <a href="/">
+ <div id="logo">
+ <svg height="100" width="100">
+ <circle cx="50" cy="50" r="40" stroke="darkmagenta" stroke-width="6" fill="white" />
+ <text x="19" y="83" font-family="Verdana" font-size="90" fill="darkmagenta">
+ B
+ </text>
+ </svg>
+ </div>
+ </a>
+ <!--#include virtual="/static/web-common/dropdown-navbar.html" -->
+ {% block headermsg %} {% endblock %}
+ </header>
+ {% block content %} {% endblock %}
+ </body>
+</html>