1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
{% extends "!layout.html" %}
{% block rootrellink %}
<li><a target="_blank" href="{{ pathto("../archive.html", 1) }}">Archive</a> «</li>
<li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python {{ release }}</a> »</li>
<!--
<li><a target="_blank" href="http://cfpython.bitbucket.org">cf-python</a> »</li>
<li><select onchange="location = this.options[this.selectedIndex].value;">
<option value="{{ pathto("../1.0/index.html", 1) }}"
{%- if release == "1.0" %}selected{% endif %}>1.0
<option value="{{ pathto("../0.9.9/index.html", 1) }}"
{%- if release == "0.9.9" %}selected{% endif %}>0.9.9
<option value="{{ pathto("../0.9.8.3/index.html", 1) }}"
{%- if release == "0.9.8.3" %}selected{% endif %}>0.9.8.3
<option value="{{ pathto("../archive.html", 1) }}">Archive
</select>
</li>
-->
{{ super() }}
{% endblock %}
|