layout.html.jinja2
4.31 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
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}Welcome{% endblock %} — {{ config.meta.title }}</title>
<meta name="description" content="{{ config.meta.description }}">
<meta name="keywords" content="{{ config.meta.keywords | join(', ') }}">
{% for author in config.authors | shuffle %}
<meta name="author" content="{{ author.name }} <{{ author.mail }}>">
{% endfor %}
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="{{ static('img/favicon.ico') }}">
<link href="https://fonts.googleapis.com/css?family=Baumans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{{ static('css/material.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ static('css/main.css') }}">
{% block styles %}{% endblock %}
{# <script type="text/javascript">#}
{# // Good javascript is no javascript -- hurray! \o/#}
{# </script>#}
{% block scripts_header %}{% endblock %}
</head>
<body>
<div id="page-container" class="container">
<header class="header mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">CDPP / Solar Wind Prediction @ Planets</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="">Model</a>
<a class="mdl-navigation__link" href="https://ec.europa.eu/programmes/horizon2020/">Horizon 2020</a>
</nav>
</div>
</header>
<div class="">
{# <nav id="menu" role="navigation">#}
{# <ul>#}
{# <li class="home{% if menu_section == 'home' %} active{% endif %}">#}
{# <a href="index.html"></a>#}
{# </li>#}
{# <li{% if menu_section == 'authors' %} class="active"{% endif %}>#}
{# <a href="authors.html">Authors</a>#}
{# </li>#}
{# </ul>#}
{# </nav>#}
</div>
<div id="content">
{% block content %}
<p>Please override the "content" block in the page template.</p>
{% endblock %}
</div>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
{# <div class="mdl-logo">v{{ version }}</div>#}
<p class="disclaimer">
The <a href="http://www.europlanet-2020-ri.eu/">Europlanet 2020 Research Infrastructure</a> project has received funding
<br>
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>
{# <img class="logo" src="{{ static('img/logo/logo_cnrs.png') }}" alt="CNRS" id="logo-cnrs" />#}
{# <ul class="mdl-mini-footer__link-list">#}
{# <li><a href="#">Help?</a></li>#}
{# <li><a href="#">Sources</a></li>#}
{# <li><a href="#">Authors</a></li>#}
{# <li><a href="#">License</a></li>#}
{# </ul>#}
</div>
<div class="mdl-mini-footer__right-section">
<img class="logo" src="{{ static('img/logo/logo_cdpp.png') }}" alt="CDPP" id="logo_cdpp" />
<img class="logo" src="{{ static('img/logo/logo_europlanet.png') }}" alt="Europlanet" id="logo_europlanet" />
</div>
</footer>
</div>
<script type="application/javascript">
// fixme: GOOGLE ANALYTICS
/*
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56037907-1', 'auto');
ga('send', 'pageview');
*/
</script>
<script type="application/javascript" src="{{ static('js/vendor/jquery.min.js') }}"></script>
<script type="application/javascript">
jQuery().ready(function($){ $(".nojs").hide(); });
</script>
{% block scripts_footer %}{% endblock %}
</body>
</html>