mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-06-01 06:12:20 -06:00
39 lines
1.3 KiB
HTML
39 lines
1.3 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 %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
|
{% endblock %}
|
|
{%- block relbar2 %}{% endblock %}
|
|
{% block header %}
|
|
{{ super() }}
|
|
{% if pagename == 'index' %}
|
|
<div class=indexwrapper>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
© Copyright {{ copyright }}.
|
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
|
|
</div>
|
|
{% if pagename == 'index' %}
|
|
</div>
|
|
{% endif %}
|
|
<!-- Piwik -->
|
|
<script type="text/javascript">
|
|
var _paq = _paq || [];
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//ziirish.info/piwik/";
|
|
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
|
_paq.push(['setSiteId', 5]);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<noscript><p><img src="//ziirish.info/piwik/piwik.php?idsite=5" style="border:0;" alt="" /></p></noscript>
|
|
<!-- End Piwik Code -->
|
|
{%- endblock %}
|