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
|
{% extends "!layout.html" %}
{% block rootrellink %}
<li><a href="http://pygraphviz.github.io/">PyGraphviz Home </a> | </li>
<li><a href="http://pygraphviz.github.io/documentation.html">Documentation </a>| </li>
<li><a href="http://pygraphviz.github.io/download.html">Download </a> | </li>
<li><a href="http://github.com/pygraphviz">Developer (Github)</a></li>
{% endblock %}
{% block relbar1 %}
<div style="color: black;background-color: white; font-size: 3.2em; text-align: left; padding: 15px 10px 10px 15px">
PyGraphviz
</div>
{{ super() }}
{% if version.split('.')[-1].startswith('dev') %}
<p>This documentation is for version <b>{{ version }}</b>, which is
not released yet.</p>
{% endif %}
{% endblock %}
{# put the sidebar before the body #}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}
|