2013-04-02 00:03:25 +02:00
|
|
|
{%- extends "basic/layout.html" %}
|
|
|
|
|
{%- block extrahead %}
|
|
|
|
|
{{ super() }}
|
2013-04-02 11:10:29 +02:00
|
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400|Antic+Slab' rel='stylesheet' type='text/css'>
|
2013-04-02 00:03:25 +02:00
|
|
|
{% if theme_touch_icon %}
|
|
|
|
|
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
|
|
|
|
|
{% endif %}
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
|
|
|
|
{% endblock %}
|
2013-04-02 13:17:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block sidebar2 %}
|
|
|
|
|
{{ sidebar() }}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2013-04-02 00:03:25 +02:00
|
|
|
{%- block footer %}
|
2013-04-03 14:47:16 +02:00
|
|
|
<div class="footer" style="position:relative">
|
|
|
|
|
<a href="http://www.mozillaopennews.org/" style="position:absolute;left:10px;bottom:-10px"><img src="_static/knight_mozilla_on.jpg" /></a>
|
|
|
|
|
|
2013-04-02 00:03:25 +02:00
|
|
|
© Copyright {{ copyright }}.
|
|
|
|
|
</div>
|
2013-04-02 13:17:41 +02:00
|
|
|
<div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<a style="position: absolute; top: 0; right: 0; border: 0;" href="https://github.com/pudo/dataset" class="github">
|
|
|
|
|
<img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" class="github"/>
|
2013-04-02 00:03:25 +02:00
|
|
|
</a>
|
2013-04-03 13:18:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Piwik -->
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
var _paq = _paq || [];
|
|
|
|
|
_paq.push(["trackPageView"]);
|
|
|
|
|
_paq.push(["enableLinkTracking"]);
|
|
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://piwik.vis4.net/";
|
|
|
|
|
_paq.push(["setTrackerUrl", u+"piwik.php"]);
|
|
|
|
|
_paq.push(["setSiteId", "17"]);
|
|
|
|
|
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
|
|
|
|
|
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
|
|
|
|
<!-- End Piwik Code -->
|
2013-04-02 00:03:25 +02:00
|
|
|
{%- endblock %}
|