Files
bonobo/docs/_templates/base.html
2018-01-16 06:27:25 +01:00

55 lines
1.9 KiB
HTML

{%- 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">
&copy; 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 %}