File: layout.html

package info (click to toggle)
python-future 0.16.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,316 kB
  • sloc: python: 42,522; makefile: 141; sh: 41
file content (24 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{# Import the theme's layout. #}
{% extends "!layout.html" %}

{% block extrahead %}
{{ super() }}
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19344199-2']);
  _gaq.push(['_trackPageview']);
</script>
{% endblock %}

{% block footer %}
{{ super() }}
<div class="footer">
</div>
{% endblock %}


{# Import the theme's layout. #}


{# Include our new CSS file into existing ones. #}
{% set css_files = css_files + ['_static/my-styles.css'] %}