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
|
{% extends "!layout.html" %}
{% set title = 'Neuroimaging in Python - Pipelines and Interfaces' %}
{% set short_title = 'Nipype' %}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}
{% block extrahead %}
{{ super() }}
<meta name="keywords" content="nipype, neuroimaging, pipeline, workflow, parallel, python, neuroscience">
<!-- google analytics snippet was completely removed by Debian maintainers.
See http://lintian.debian.org/tags/privacy-breach-google-adsense.html
for more information -->
{% endblock %}
{% block header %}
<div class="header-wrapper">
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
{%- block headertitle %}
<a href="{{pathto('index') }}">
<img src="{{ pathto("_static/nipype-banner-bg.png", 1) }}" alt="NIPY logo" border="0" />
{%- endblock %}
<div style="margin-top: 1em;
border-top: 1px solid #AAA;
border-bottom: 1px solid #AAA;
border-radius: 5px;
padding: 3px 1em;">
{% include 'navbar.html' %}
</div>
</div>
</div>
{% endblock %}
{% block relbar1 %}{% endblock %}
{% block relbar2 %}{% endblock %}
{% block footer %}
{{ super() }}
<!-- google analytics snippet was completely removed by Debian maintainers.
See http://lintian.debian.org/tags/privacy-breach-google-adsense.html
for more information -->
{% endblock %}
|