blob: 58114b5dc2b8871d9f484933d0e67e296e075856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
|