source: trunk/adm/website/_templates/layout.html @ 62

Last change on this file since 62 was 62, checked in by pinsard, 13 years ago

website : new email contact, home page, layout and publications

File size: 1.4 KB
Line 
1{% extends "!layout.html" %}
2
3{%- block extrahead %}
4{{ super() }}
5<script type="text/javascript">
6  var _gaq = _gaq || [];
7  _gaq.push(['_setAccount', 'UA-24305013-1']);
8  _gaq.push(['_trackPageview']);
9</script>
10{% endblock %}
11
12{% block footer %}
13{{ super() }}
14<div class="footer">This page uses <a href="http://analytics.google.com/">
15Google Analytics</a> to collect statistics. You can disable it by blocking
16the JavaScript coming from www.google-analytics.com.
17<script type="text/javascript">
18  (function() {
19    var ga = document.createElement('script');
20    ga.src = ('https:' == document.location.protocol ?
21              'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
22    ga.setAttribute('async', 'true');
23    document.documentElement.firstChild.appendChild(ga);
24  })();
25</script>
26</div>
27{% endblock %}
28
29{% block rootrellink %}
30   <li><a href="{{ pathto('index') }}">TropFlux home</a>|&nbsp;</li>
31   <li><a href="{{ pathto('data_access') }}">Data access</a> &raquo;</li>
32{% endblock %}
33
34
35{% block relbar1 %}
36
37<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
38<a href="{{ pathto('index') }}"><img src="{{
39pathto("_static/logo.png", 1) }}" border="0" alt="tropflux logo"/></a>
40</div>
41{{ super() }}
42{% endblock %}
43
44{# put the sidebar before the body #}
45{% block sidebar1 %}{{ sidebar() }}{% endblock %}
46{% block sidebar2 %}{% endblock %}
Note: See TracBrowser for help on using the repository browser.