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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
{% extends "!layout.html" %}
{% set title = 'Neuroimaging in Python' %}
{% block rootrellink %}
<li><a href="{{pathto('index')}}">NIPY home</a> | </li>
{% endblock %}
{% block extrahead %}
<meta name="keywords" content="nipy, neuroimaging, python, neuroscience, time
series">
{% endblock %}
{% block header %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="{{pathto('index') }}">
<img src="{{ pathto("_static/reggie2.png", 1) }}" alt="NIPY logo" border="0" />
</div>
{% endblock %}
{# This block gets put at the top of the sidebar #}
{% block sidebarlogo %}
<h4> Site Navigation </h4>
<ul>
<li><a href="{{pathto('documentation')}}">Documentation</a></li>
<li><a href="{{pathto('devel/index')}}">Development</a></li>
</ul>
<h4> NIPY Community </h4>
<ul class="simple">
<li><a class="reference external"
href="http://nipy.org/">Community Home</a></li>
<li><a class="reference external"
href="http://nipy.org/project-directory">NIPY Projects</a></li>
<li><a class="reference external"
href="https://mail.python.org/mailman/listinfo/neuroimaging">Mailing List</a></li>
<li><a class="reference external"
href="license.html">License</a></li>
</ul>
<h4> Github repo </h4>
<ul class="simple">
<li><a class="reference external"
href="http://github.com/nipy/nipy/">Nipy Github</a></li>
</ul>
{% endblock %}
{# I had to copy the whole search block just to change the rendered text,
so it doesn't mention modules or classes #}
{%- block sidebarsearch %}
{%- if pagename != "search" %}
<div id="searchbox-ml" style="display: none">
<h3>Search mailing list archive</h3>
<script type="text/javascript">
function mlsearch(curobj)
{
curobj.q.value="site:http://mail.python.org/pipermail/neuroimaging/ "+curobj.userquery.value
}
</script>
<form action="http://www.google.com/search" method="get" onSubmit="mlsearch(this)">
<input name="userquery" size="13" type="text" /> <input type="submit" value="Go" />
<input name="q" type="hidden" />
</form>
</div>
<div id="searchbox-site" style="display: none">
<h3>{{ _('Search this site') }}</h3>
<form class="search" action="{{ pathto('search') }}" method="get">
<input type="text" name="q" size="13" />
<input type="submit" value="{{ _('Go') }}" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
</p>
</div>
<script type="text/javascript">$('#searchbox-ml').show(0);</script>
<script type="text/javascript">$('#searchbox-site').show(0);</script>
{%- endif %}
{# The sidebarsearch block is the last one available in the default sidebar()
macro, so the only way to add something to the bottom of the sidebar is to
put it here, at the end of the sidebarsearch block (before it closes).
#}
{%- endblock %}
|