summaryrefslogtreecommitdiff
path: root/talerbank/app/templates/base.html
blob: 83e4bfa4b6b7257eaac1fdfc8358c5bc845cded6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "common_base.html" %}

{% block head %}
<link rel="stylesheet" type="text/css" href="{{ static('bank.css') }}" />
<link rel="stylesheet" type="text/css" href="{{ static('colors-bank.css') }}" />
<link rel="stylesheet" type="text/css" href="{{ static('disabled-button.css') }}" />
{% endblock %}

{% block header_content %}

<h1><span class="it"><a href="{{ env('TALER_ENV_URL_BANK') }}">{{ gettext("Demo Bank") }}</a></span></h1>

<p>
  {{ _("This part of the demo shows how a bank that supports Taler directly would work. In addition to using your own bank account, you can also see the transaction history of some <a href=\"{public_accounts}\">Public Accounts</a>.").format(public_accounts=url('public-accounts')) }}
</p>

{% endblock %}