Blame view

web/view/layout.html.jinja2 4.34 KB
9390ec89   Goutte   Initial experimen...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8">

    <title>{% block title %}Welcome{% endblock %} &mdash; {{ 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') }}">

c42fea3a   Goutte   Rework the CSS wi...
18
    <link href="https://fonts.googleapis.com/css?family=Baumans" rel="stylesheet">
84cb553d   Goutte   Move to material ...
19
    <link rel="stylesheet" type="text/css" href="{{ static('css/material.min.css') }}">
9390ec89   Goutte   Initial experimen...
20
21
22
23
24
25
26
27
28
29
30
31
32
    <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">

8fa9e8e8   Goutte   Hide a CDPP logo ...
33
      <header class="header mdl-layout__header">
f6ed8d85   Goutte   Rework layout as ...
34
        <div class="mdl-layout__header-row">
a21f81d9   Goutte   Enable Venus and ...
35
          <span class="mdl-layout-title">CDPP / Heliopropa</span>
f6ed8d85   Goutte   Rework layout as ...
36
37
38
39
          <!-- 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">
355ac509   Goutte   Nicolas' changes ...
40
            <a class="mdl-navigation__link" href="">Model</a>
6f9a3852   Goutte   Hide time series ...
41
            <a class="mdl-navigation__link" href="https://ec.europa.eu/programmes/horizon2020/">Horizon 2020</a>
f6ed8d85   Goutte   Rework layout as ...
42
          </nav>
9390ec89   Goutte   Initial experimen...
43
44
45
46
47
        </div>
      </header>

      <div class="">

c42fea3a   Goutte   Rework the CSS wi...
48
49
50
51
52
53
54
55
56
57
{#        <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>#}
9390ec89   Goutte   Initial experimen...
58

8856695e   Goutte   Fix layout.
59
60
61
62

      </div>

      <div id="content">
9390ec89   Goutte   Initial experimen...
63
{% block content %}
8856695e   Goutte   Fix layout.
64
        <p>Please override the "content" block in the page template.</p>
9390ec89   Goutte   Initial experimen...
65
{% endblock %}
9390ec89   Goutte   Initial experimen...
66
67
      </div>

f6ed8d85   Goutte   Rework layout as ...
68
69
      <footer class="mdl-mini-footer">
        <div class="mdl-mini-footer__left-section">
a79c5268   Goutte   Add probes and co...
70
71
72
73
74
75
76
77
78
{#          <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°&nbsp;654208.
          </p>

f6ed8d85   Goutte   Rework layout as ...
79
{#          <img class="logo" src="{{ static('img/logo/logo_cnrs.png') }}" alt="CNRS" id="logo-cnrs" />#}
a79c5268   Goutte   Add probes and co...
80
81
82
83
84
85
86
87
88
89
90
{#          <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" />
          &nbsp;&nbsp;&nbsp;
          <img class="logo" src="{{ static('img/logo/logo_europlanet.png') }}" alt="Europlanet" id="logo_europlanet" />
f6ed8d85   Goutte   Rework layout as ...
91
        </div>
9390ec89   Goutte   Initial experimen...
92
      </footer>
f6ed8d85   Goutte   Rework layout as ...
93

9390ec89   Goutte   Initial experimen...
94
95
    </div>

908b4423   Goutte   Bump to a newer j...
96
97
98
99
100
101
102
103
104
105
106
{#    <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>#}
9390ec89   Goutte   Initial experimen...
107

908b4423   Goutte   Bump to a newer j...
108
    <script type="application/javascript" src="{{ static('js/vendor/jquery-3.2.1.min.js') }}"></script>
9390ec89   Goutte   Initial experimen...
109
110
111
112
113
114
115
    <script type="application/javascript">
      jQuery().ready(function($){ $(".nojs").hide(); });
    </script>
{% block scripts_footer %}{% endblock %}

  </body>
</html>