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
|
{#
sphinxdoc/layout.html
~~~~~~~~~~~~~~~~~~~~~
Sphinx layout template for the sphinxdoc theme.
:copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
#}
{% extends "classic/layout.html" %}
{%- block extrahead %}
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ "TeX": {Macros: {AA : "{\\unicode{x212B}}"}}, "HTML-CSS": {scale: 90}});
</script>
{% endblock %}
{% block rootrellink %}
<li>[<a href="{{ pathto('index') }}"> Larch</a>|</li>
<li><a href="{{ pathto('getting_started') }}"> Getting Started</a>|</li>
<li><a href="{{ pathto('xafs') }}">XAFS Analysis</a>|</li>
<li><a href="{{ pathto('xray') }}">X-ray Databases</a>|</li>
<li><a href="{{ pathto('xrf') }}">XRF Analysis</a>|</li>
{% endblock %}
{% block relbar1 %}
<div style=" color: #c5daba; text-align: left; height:65px; padding: 0px">
<table border=0>
<tr>
<td width=20%>
<a href="{{pathto('index')}}">
<img src="{{pathto("_static/larchcones.png", 1)}}" height=50px alt="larchcones"/></a>
</td>
<td width=75% padding=0>
<font size=+2>
<a href="{{ pathto('index') }}" style="color:#772211">
Larch: Data Analysis Tools for X-ray Spectroscopy
</a>
</font>
</td>
</tr></table>
</div>
{{ super() }}
{% endblock %}
{# put the sidebar before the body #}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}
|