summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas HABEGGER <andreas.habegger@bfh.ch>2023-11-18 19:53:48 +0100
committerAndreas HABEGGER <andreas.habegger@bfh.ch>2023-11-20 12:03:47 +0100
commit9b529df3b8450d2e4ab98a6baf834b88c472c8e0 (patch)
treeec9ff07f49590e7bef8d8ed693d6aef4f0e5f3a9
parentc91f2fa988baa61e8a341ff4c0eb552a27013a11 (diff)
downloadwww-9b529df3b8450d2e4ab98a6baf834b88c472c8e0.tar.gz
www-9b529df3b8450d2e4ab98a6baf834b88c472c8e0.tar.bz2
www-9b529df3b8450d2e4ab98a6baf834b88c472c8e0.zip
Added empty consortium page with special footer
-rw-r--r--common/consortium.js33
-rw-r--r--common/footer-eu.j2.inc20
-rw-r--r--common/navigation.j2.inc1
-rw-r--r--template/consortium.html.j223
4 files changed, 77 insertions, 0 deletions
diff --git a/common/consortium.js b/common/consortium.js
new file mode 100644
index 00000000..3387828a
--- /dev/null
+++ b/common/consortium.js
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html lang="{{ lang }}">
+ <head>
+ {# TODO Fix meta data based on EU TALER Consortium requirements #}
+ <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') }}" />
+ {# TODO Fix description #}
+ <meta name="description" content="{{ _('A payment system that makes privacy-friendly online transactions fast and easy.') }}" />
+ {# TODO Other header may be needed #}
+ {% 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-eu.j2.inc" %}
+ </body>
+</html>
diff --git a/common/footer-eu.j2.inc b/common/footer-eu.j2.inc
new file mode 100644
index 00000000..55ce26e8
--- /dev/null
+++ b/common/footer-eu.j2.inc
@@ -0,0 +1,20 @@
+<footer id="footer">
+ <div class="container">
+ <div class="row justify-content-center">
+ <div class="col-30">
+ <hr style="border-top: 1px solid #00000069; padding-bottom: 1em" />
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-4 col-sm-12">
+
+ </div>
+ <div class="col-md-4 col-sm-12">
+
+ </div>
+ <div class="col-md-4 col-sm-20">
+
+ </div>
+ </div>
+ </div>
+</footer>
diff --git a/common/navigation.j2.inc b/common/navigation.j2.inc
index 0878ac5b..8b02964c 100644
--- a/common/navigation.j2.inc
+++ b/common/navigation.j2.inc
@@ -31,6 +31,7 @@
{{ navlink('principles.html', _('Principles')) }}
{{ navlink('docs.html', _('Docs')) }}
{{ navlink('development.html', _('Development')) }}
+ {{ navlink('consortium.html', _('Consortium')) }}
<!-- {{ navlink('comingsoon.html', _('Coming soon')) }} -->
{{ navlink('news/index.html', _('News')) }}
<li class="nav-item mx-2">
diff --git a/template/consortium.html.j2 b/template/consortium.html.j2
new file mode 100644
index 00000000..f48a2db9
--- /dev/null
+++ b/template/consortium.html.j2
@@ -0,0 +1,23 @@
+{% extends "common/consortium.js" %}
+{% block body_content %}
+<main id="maincontent">
+
+ <div class="container">
+
+ <!--Section: Content-->
+ <section class="section-consortium dark-grey-text">
+
+ {# <div class="justify-content-md-left"> #}
+
+ <!-- Section heading -->
+ <h4 class="font-weight-bold pb-2 mb-4">{{ _("Consortium")}}</h4>
+ <!-- Section description -->
+
+
+ </section>
+ <!--Section: Content-->
+
+ </div>
+</main>
+
+ {% endblock body_content %} \ No newline at end of file