summaryrefslogtreecommitdiff
path: root/common/base.j2
blob: 8a918c7350c3670a5619b04bc3554b4d5ad32c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="{{ lang }}">
  <head>
    <meta charset="UTF-8"/>
    <title>{{ _("GNU Taler") }}</title>
    <link rel="shortcut icon" href="/favicon.ico">
    <link rel="icon" type="image/svg+xml" href="{{ url_static('images/favicon.svg') }}" sizes="any">
    <link rel="icon" type="image/png" href="{{ url_static('images/android-chrome-192x192.png') }}" sizes="192x192">
    <link rel="icon" type="image/png" href="{{ url_static('images/android-chrome-512x512.png') }}" sizes="512x512">
    <link rel="apple-touch-icon" sizes="180x180" href="{{ url_static('images/apple-touch-icon.png') }}">
    <meta name="msapplication-TileColor" content="#ffffff">
    <meta name="msapplication-TileImage" content="{{ url_static('images/mstile-150x150.png') }}">
    <meta property="og:title" content="GNU Taler - Taxable Anonymous Libre Electronic Reserves" />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="{{ url_localized('index.html') }}" />
    <meta property="og:image" content="https://taler.net/favicon.ico" />
    <meta property="og:image" content="/favicon.ico" />
    <meta property="og:image" content="{{ url_static('images/favicon.png') }}" />
    <meta name="description" content="{{ _('A payment system that makes privacy-friendly online transactions fast and easy.') }}" />
    <link rel="me" href="https://mastodon.social/@taler">
    <link rel="me" href="https://fosstodon.org/@Taler">
    {% include "common/header.j2.inc" %}
    {% block head_content %}{% endblock %}
  </head>
  <body id="mybody">
    {% include "common/navigation.j2.inc" %}
    <div id="body_content">
    {% block body_content %}{% endblock %}
    </div>
    {% include "common/footer.j2.inc" %}
  </body>
</html>