2013-08-21 10:11:31 +02:00
|
|
|
{#
|
|
|
|
layout.html
|
|
|
|
~~~~~~~~~~~
|
|
|
|
|
|
|
|
TRIQS layout template heavily based on the sphinxdoc theme.
|
|
|
|
|
|
|
|
:copyright: Copyright 2013 by the TRIQS team.
|
|
|
|
:copyright: Copyright 2007-2013 by the Sphinx team.
|
|
|
|
:license: BSD, see LICENSE for details.
|
|
|
|
#}
|
|
|
|
{%- extends "basic/layout.html" %}
|
|
|
|
|
|
|
|
{# put the sidebar before the body #}
|
|
|
|
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
|
|
|
|
{% block sidebar2 %}{% endblock %}
|
|
|
|
|
|
|
|
{% block extrahead %}
|
|
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,700'
|
|
|
|
rel='stylesheet' type='text/css'>
|
|
|
|
<script src="_static/cufon-yui.js" type="text/javascript"></script>
|
|
|
|
<script src="_static/spaceman.cufonfonts.js" type="text/javascript"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
Cufon.replace('.triqs', { fontFamily: 'spaceman', hover: true });
|
|
|
|
</script>
|
|
|
|
{{ super() }}
|
|
|
|
{%- if not embedded %}
|
|
|
|
<style type="text/css">
|
|
|
|
table.right { float: right; margin-left: 20px; }
|
|
|
|
table.right td { border: 1px solid #ccc; }
|
|
|
|
{% if pagename == 'index' %}
|
|
|
|
.related { display: none; }
|
|
|
|
{% endif %}
|
|
|
|
</style>
|
|
|
|
{%- endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block rootrellink %}
|
|
|
|
<li><a href="{{ pathto('contents') }}">Documentation</a> »</li>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
<div class="pageheader">
|
|
|
|
<ul>
|
|
|
|
<li><a href="{{ pathto('install') }}">Install</a></li>
|
|
|
|
<li><a href="{{ pathto('bugs') }}">Report Bugs</a></li>
|
2013-08-22 10:18:54 +02:00
|
|
|
<li><a href="{{ pathto('authors') }}">Authors and Quote</a></li>
|
2013-08-21 10:11:31 +02:00
|
|
|
</ul>
|
|
|
|
<div>
|
|
|
|
<h1 style="padding:0; margin: 10px 0 0 0;"><a class="triqs" href="{{ pathto('contents') }}">TRIQS</a></h1>
|
|
|
|
<span style="font-size: 14px; margin: 0px; padding: 0px;">a Toolbox for Research on Interacting Quantum Systems</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|