You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
{% extends "!layout.html" %}
|
|
{% set css_files = css_files + ['_static/style.css'] %}
|
|
|
|
{# 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">
|
|
<meta name="google-site-verification" content="oq5hNxRYo25tcfjfs3l6pPxfNgY3JzDYSpskc9q4TYI" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
{{ super() }}
|
|
|
|
<script>
|
|
(function() {
|
|
{% include "piwik-config.js" %}
|
|
var u="https://networkgenomics.com/p/tr/";
|
|
_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>
|
|
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
{% endblock %}
|