mitogen/docs/_templates/layout.html

37 lines
1.3 KiB
HTML
Raw Normal View History

2017-09-15 06:24:41 +00:00
{% extends "!layout.html" %}
{% set css_files = css_files + ['_static/style.css'] %}
2018-02-16 09:26:06 +00:00
{# We don't support Sphinx search, so don't let its JS either. #}
{% block scripts %}
{% endblock %}
{# Alabaster ships a completely useless custom.css, suppress it. #}
{%- block extrahead %}
<meta name="referrer" content="strict-origin">
2019-04-10 02:11:56 +00:00
<meta name="google-site-verification" content="oq5hNxRYo25tcfjfs3l6pPxfNgY3JzDYSpskc9q4TYI" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
2019-04-10 02:11:56 +00:00
{% endblock %}
2018-02-16 09:26:06 +00:00
{% block footer %}
{{ super() }}
<script>
(function() {
2019-03-30 23:39:56 +00:00
{% include "piwik-config.js" %}
2019-04-20 18:08:30 +00:00
var u="https://networkgenomics.com/p/tr/";
2018-02-16 09:26:06 +00:00
_paq.push(['setTrackerUrl', u+'ep']);
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+'js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript>
<p>
{% set fulltitle = (title|striptags|e) + titlesuffix -%}
<img src="https://networkgenomics.com/p/tr/ep?idsite=6&action_name={{fulltitle}}" style="border:0" alt="">
</p>
</noscript>
2018-02-18 06:32:17 +00:00
<script async defer src="https://buttons.github.io/buttons.js"></script>
2018-02-16 09:26:06 +00:00
{% endblock %}