-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathbase.html
More file actions
54 lines (46 loc) · 1.89 KB
/
base.html
File metadata and controls
54 lines (46 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{%- extends "alabaster/layout.html" %}
{%- block extrahead %}
{{ super() }}
<style>
</style>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
{% endblock %}
{%- block footer %}
{{ relbar() }}
<div class="footer">
© 2012-2018, <a href="https://romain.dorgueil.net" target="_blank">Romain Dorgueil</a> |
<a href="https://www.bonobo-project.org/" target="_blank">Bonobo ETL</a>
{%- if show_source and has_source and sourcename %}
| <a href="{{ pathto('_sources/' + sourcename, true)|e }}" rel="nofollow" target="_blank">{{ _('Page source') }}</a>
{%- endif %}
</div>
<a href="https://github.com/python-bonobo/bonobo" class="github">
<img style="position: absolute; top: 0; right: 0; border: 0;"
src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else 'https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png' }}"
alt="Fork me on GitHub" class="github"/>
</a>
{% if theme_analytics_id %}
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ theme_analytics_id }}']);
_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>
{% endif %}
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-4678258-14"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-4678258-14');
</script>
{%- endblock %}