summaryrefslogtreecommitdiff
path: root/template/consortium.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/consortium.html.j2')
-rw-r--r--template/consortium.html.j2120
1 files changed, 120 insertions, 0 deletions
diff --git a/template/consortium.html.j2 b/template/consortium.html.j2
new file mode 100644
index 00000000..58706d74
--- /dev/null
+++ b/template/consortium.html.j2
@@ -0,0 +1,120 @@
+{% extends "common/consortium.j2" %}
+{% 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 heading -->
+ <h4 class="font-weight-bold pb-2 mb-4">{{ _("Project")}}</h4>
+ <div class="row">
+ <div class="col col-md-auto"></div>
+
+ <div class="col-md-11">
+ <p class="text-muted w-responsive mx-auto mb-3">
+ {% trans %}
+ The TALER project is an initiative of Horizon Europe (Pilots for the Next Generation Internet) with the
+ aim of bringing the GNU Taler to market across Europe.
+ <br>
+ To make the GNU Taler accessible to European citizens, we need a commercially viable use of the GNU Taler
+ technology. We will achieve this through the four key project objectives.
+ {% endtrans %}
+ </p>
+
+ <div class="accordion" id="accordionObjectives">
+ {% for objective in conf['objectives'] %}
+ <div class="accordion-item">
+ <h2 class="accordion-header" id="heading_{{ loop.index }}">
+ <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
+ data-bs-target="#collapse_{{ loop.index }}" aria-expanded="false"
+ aria-controls="collapse_{{ loop.index }}">
+ Objective {{ loop.index }}: {{ objective.title }}
+ </button>
+ </h2>
+ <div id="collapse_{{ loop.index }}" class="accordion-collapse collapse"
+ aria-labelledby="heading_{{ loop.index }}" data-bs-parent="#accordionObjectives">
+ <div class="accordion-body text-muted w-responsive">
+ {{ objective.text }}
+ </div>
+ </div>
+ </div>
+ {% endfor %}
+ </div>
+ <div class="col col-md-auto"></div>
+ <p class="text-muted w-responsive mx-auto"><br></p>
+
+ </div>
+
+
+ <!-- Section heading -->
+ <h4 class="font-weight-bold pb-2 mb-4">{{ _("Partners")}}</h4>
+
+ <div class="row mb-4">
+ <div class="col col-md-auto"></div>
+
+ <div class="col-md-11">
+ <p class="text-muted w-responsive mx-auto mb-3">
+ {% trans %}
+ TALER consortium consists of 11 partners from 8 European countries (the Netherlands, Belgium, France,
+ Germany, Greece, Hungary, Luxembourg and Switzerland).
+ {% endtrans %}
+ </p>
+ <p class="text-muted w-responsive mx-auto mb-3">
+ {% trans %}
+ The consortium is diverse in terms of types of institutions, including research (TUE) and applied
+ science
+ universities (BFH), small for-profit (CBG, TSYS, VV) and non-profit (PS) companies, cooperative banks
+ (GLS, MAG), a foundation (NLnet) and grassroots movements (ESEN, HODI).
+ {% endtrans %}
+ </p>
+
+ </div>
+ <div class="col col-md-auto"></div>
+ </div>
+
+ </section>
+
+ <!--Section: Content-->
+ <section class="section-consortium justify-content-md-center text-center dark-grey-text ">
+
+ <div class="container">
+
+ <div class="row row-cols-1 row-cols-md-3 g-4">
+ <!-- start -->
+
+ {% for partner in conf['partners'] %}
+
+ <div class="col">
+ <div class="card border-0 h-100">
+ <a href="{{ partner.url }}" target="_blank" rel="noopener noreferrer">
+ <img src="{{ url(partner.logo ) }}" height="180" class="card-header rounded-circle z-depth-3"
+ alt="{{ partner.id + ' avatar'}}">
+ </a>
+ <div class="card-note grey-text text-muted mt-3">The team of {{ partner.name }} is represented by </div>
+ <div class="card-body h-100">
+ <h5 class="card-title font-weight-bold grey-text">{{ partner.contact }} </h5>
+ <p class="card-text grey-text text-muted word-wrap"> {{ partner.role }} </p>
+ </div>
+ <div class="card-footer">
+ <small class="text-body-secondary dark-grey-text text-muted word-wrap"><i> {{ partner.statement }} </i></small>
+ </div>
+ </div>
+ </div>
+
+ {% endfor %}
+ </div>
+ </div>
+ </section>
+ <!--Section: Content-->
+
+ </div>
+</main>
+{% endblock body_content %} \ No newline at end of file