taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

commit 9b529df3b8450d2e4ab98a6baf834b88c472c8e0
parent c91f2fa988baa61e8a341ff4c0eb552a27013a11
Author: Andreas HABEGGER <andreas.habegger@bfh.ch>
Date:   Sat, 18 Nov 2023 19:53:48 +0100

Added empty consortium page with special footer

Diffstat:
Acommon/consortium.js | 33+++++++++++++++++++++++++++++++++
Acommon/footer-eu.j2.inc | 20++++++++++++++++++++
Mcommon/navigation.j2.inc | 1+
Atemplate/consortium.html.j2 | 24++++++++++++++++++++++++
4 files changed, 78 insertions(+), 0 deletions(-)

diff --git a/common/consortium.js 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 @@ -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 @@ -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 @@ -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