about.html.jinja2
2.41 KB
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
{% 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">
↵ Back
</a>
</div>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">
<h2>Bug Reports</h2>
<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 #}
<a href="mailto:{{ authors_emails | shuffle | join(',') }}?subject=Heliopropa%20Bug%20Report%20%23{{ uuid4 }}">via email</a> or,
<em>(if you can)</em>,
use <a href="https://gitlab.irap.omp.eu/CDPP/SPACEWEATHERONLINE/issues">our issue tracker</a>.
</p>
</div>
<div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">
<h2>Credits</h2>
<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° 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>
<div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">
<h2>Latin</h2>
<p>
Lorem ipsum dolor sit amet, in girum imus nocte et consumimur igni.
<br>
Alea jacta est.
</p>
</div>
</div>
</main>
</div>
{% endblock %}
{#### CSS ####################################################################}
{% block styles %}
{{ super() }}
{% endblock %}
{#### JAVASCRIPT #############################################################}
{% block scripts_footer %}
{{ super() }}
{% endblock %}