Blame view

web/view/about.html.jinja2 2.89 KB
64a671cd   Goutte   Add an About page.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'layout.html.jinja2' %}
{% set menu_section = 'about' %}
{% block title %}About{% endblock %}

{#############################################################################}

{% block content %}

<div class="mdl-layout mdl-js-layout">

  <main id="" class="mdl-layout__content">

    <div class="mdl-grid">
    <a href="/index.html" class="mdl-button mdl-button--raised mdl-button--primary">
      &crarr; Back
    </a>
    </div>

    <div class="mdl-grid">
1ab47144   Goutte   Add new menus, up...
20

64a671cd   Goutte   Add an About page.
21
      <div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">
1ab47144   Goutte   Add new menus, up...
22
        <h2><i class="fas fa-spider"></i> Bug Reports</h2>
64a671cd   Goutte   Add an About page.
23
24
25
26
        <p>
          Please send bug reports
{# There are no safe ways to embed multiple recipients in a mailto #}
{# https://web.archive.org/web/20151116223616/http://www.sightspecific.com/~mosh/WWW_FAQ/multrec.html #}
36961d6f   Goutte   Slightly improve ...
27
          <a href="mailto:{{ authors_emails | shuffle | join(',') }}?subject=Heliopropa%20Bug%20Report%20%23{{ uuid4 }}">via email</a> or,
64a671cd   Goutte   Add an About page.
28
29
30
          <em>(if you can)</em>,
          use <a href="https://gitlab.irap.omp.eu/CDPP/SPACEWEATHERONLINE/issues">our issue tracker</a>.
        </p>
1ab47144   Goutte   Add new menus, up...
31
32
33
34
35
36
        {% for toot in config.toots %}
        <p class="toot">
          <span style="font-size: 0.8em; float: left; padding-right: 1em;">{{ toot.date }}</span>
          <span>{{ toot.text | md }}</span>
        </p>
        {% endfor %}
64a671cd   Goutte   Add an About page.
37
      </div>
1ab47144   Goutte   Add new menus, up...
38

64a671cd   Goutte   Add an About page.
39
      <div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">
1ab47144   Goutte   Add new menus, up...
40
        <h2><i class="fas fa-medal"></i> Credits</h2>
64a671cd   Goutte   Add an About page.
41
42
43
44
45
46
47
48
49
        <p>
          The <a href="http://www.europlanet-2020-ri.eu/">Europlanet 2020 Research Infrastructure</a> project has received funding
          from the <a href="https://ec.europa.eu/programmes/horizon2020/">European Union's Horizon 2020</a> research and innovation programme
          under grant agreement N°&nbsp;654208.
        </p>
        <p>
          If you like the pixel art planets, you can <a href="https://www.redbubble.com/people/spacefruitdox/portfolio" title="We're not affiliated with the author of these images in any way, but they're nice and this is a way of saying thanks.">buy goodies</a> of them.
        </p>
      </div>
1ab47144   Goutte   Add new menus, up...
50

64a671cd   Goutte   Add an About page.
51
      <div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">
1ab47144   Goutte   Add new menus, up...
52
        <h2><i class="fas fa-balance-scale"></i> Fair Use</h2>
64a671cd   Goutte   Add an About page.
53
        <p>
1ab47144   Goutte   Add new menus, up...
54
55
56
57
          You may use this service as any public domain service.<br />
          We provide no warranty of any kind.<br />
          The source code is available for you to inspect and fork.<br />
          If you use this service, please cite it and let us know.
64a671cd   Goutte   Add an About page.
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
        </p>
      </div>
    </div>

  </main>
</div>

{% endblock %}


{#### CSS ####################################################################}

{% block styles %}
{{ super() }}
{% endblock %}


{#### JAVASCRIPT #############################################################}

{% block scripts_footer %}
{{ super() }}
{% endblock %}