44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
{% extends "!layout.html" %}
|
|
|
|
{% block relbar1 %}
|
|
{% endblock %}
|
|
{% block relbar2 %}
|
|
{% endblock %}
|
|
|
|
{% block rootrellink %}
|
|
{% endblock %}
|
|
{% block sidebarrel %}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
|
|
<h1>pytest: rapid no-boilerplate testing with Python</h1>
|
|
<div style="text-align: left; font-size: 130%; vertical-align: middle;">
|
|
<a href="{{ pathto('index') }}">home</a> |
|
|
<a href="{{ pathto('contents') }}">all docs</a> |
|
|
<a href="{{ pathto('getting-started') }}">install</a> |
|
|
<a href="{{ pathto('example/index') }}">examples</a> |
|
|
<a href="{{ pathto('customize') }}">customize</a> |
|
|
<a href="http://https://bitbucket.org/hpk42/pytest/issues?status=new&status=open">issues</a>|
|
|
<a href="{{ pathto('contact') }}">contact</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
{{ super() }}
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-7597274-13']);
|
|
_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>
|
|
{% endblock %}
|