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