mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
{%- extends "basic/layout.html" %}
|
|
{%- block extrahead %}
|
|
{{ super() }}
|
|
{% if theme_touch_icon %}
|
|
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
|
|
{% endif %}
|
|
<link media="only screen and (max-device-width: 480px)" href="{{
|
|
pathto('_static/small_flask.css', 1) }}" type= "text/css" rel="stylesheet" />
|
|
{% endblock %}
|
|
{%- block relbar2 %}{% endblock %}
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
© Copyright {{ copyright }}.
|
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
|
|
</div>
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-8742933-9']);
|
|
_gaq.push(['_setDomainName', 'none']);
|
|
_gaq.push(['_setAllowLinker', true]);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
|
|
</script>
|
|
{%- endblock %}
|