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
|
{% extends "!layout.html" %}
{% block rootrellink %}
<li><a href="{{ pathto('index') }}">home</a>| </li>
<li><a href="{{ pathto('search') }}">search</a> </li>
{% endblock %}
{% block extrahead %}
<meta http-equiv="Content-Style-Type" content="text/css" />
{% endblock %}
{% block relbar1 %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="{{ pathto('index') }}">
<h1>PyNAST: Python Nearest Alignment Space Termination tool</h1></a>
</div>
{{ super() }}
{% endblock %}
{# put the sidebar before the body #}
{% block sidebartoc %}
<h3><a href="http://pynast.wordpress.com/">PyNAST News and Announcements</a></h3>
<p>
<div class="news"><table style="font-size:12pt;padding: 5px;" id="feed">
</tr></table></div>
</p>
{{ super() }}
{% endblock %}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}
{# include the Google Analytics Tracker #}
{% block footer %}
{{ super() }}
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-6636235-3");
pageTracker._trackPageview();
} catch(err) {}</script>
{% endblock %}
|