summaryrefslogtreecommitdiff
path: root/template/consortium.html.j2
blob: 58706d741a5c6ddbf276593e8d80b16eaf5d98d1 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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 %}