1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
{% extends "sphinxdoc/layout.html" %}
{% block rootrellink %}
<li><a href="{{ pathto('index') }}">home</a>| </li>
<li><a href="{{ pathto('devel/examples') }}">examples</a>| </li>
<li><a href="{{ pathto('users/screenshots') }}">screenshots</a>| </li>
<li><a href="{{ pathto('contents') }}">documentation </a> »</li>
{% endblock %}
{% block relbar1 %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<table cellpading='0' cellspacing='0' width='100%'>
<tr>
<td align='left'>
<a href="{{ pathto('index') }}">
<img src="{{ pathto("_static/logo.png", 1) }}" border="0" alt="taurus"/>
</a>
</td>
<td align='right'>
<img src="{{ pathto("_static/taurus_codelogo01.png", 1) }}" border="0" alt="taurus"/>
</td>
</tr>
</table>
</div>
{{ super() }}
{% endblock %}
|