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
|
{% extends "basic/layout.html" %}
{%- macro pybtex_toc() %}
<a href="{{ url_root }}">Table of contents</a>
{%- endmacro %}
{%- macro pybtex_relbar() %}
<div class="relbar">
<div class="left">
<a href="{{ site_url }}">Pybtex</a> /
{%- if pagename != master_doc %}
<a href="{{ url_root }}">{{ shorttitle|e }}</a> /
{%- for parent in parents %}
<a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a> /
{%- endfor %}
{{ title }}
{%- else %}
{{ shorttitle|e }}
{%- endif %}
</div>
<div class="right" role="search">
<form class="search" action="{{ pathto('search') }}" method="get">
<input type="text" name="q" placeholder="Enter search text..."/>
<input type="submit" value="{{ _('Search') }}" />
</form>
</div>
</div>
{%- endmacro %}
{%- macro pybtex_prev_next() %}
<div class="prev-next">
{%- if prev and prev != master_doc %}
<div class="left">
<a href="{{ prev.link }}">← {{ prev.title }}</a>
</div>
{%- endif %}
<div class="middle">
{%- if pagename != master_doc and next %}
{{- pybtex_toc() }}
{%- else %}
{%- endif %}
</div>
<div class="right">
{%- if next %}
<a href="{{ next.link }}">{{ next.title }} →</a>
{%- elif prev %}
{{- pybtex_toc() }}
{%- endif %}
</div>
</div>
{%- endmacro %}
{%- block htmltitle %}
<title>{{ title|striptags|e }}{{ titlesuffix }} {% if not site %}({{ release }}){% endif %}</title>
{%- endblock %}
{%- block css %}
{# is is the right place for meta tags? #}
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ super() }}
{%- endblock %}
{%- block scripts %}
{%- if not site %}{{ super() }}{% endif %}
{%- endblock %}
{%- block relbar1 %}
{%- if not site %}{{ pybtex_relbar() }}{% endif %}
{%- endblock %}
{%- block relbar2 %}
{%- if not site %}{{ pybtex_prev_next() }}{% endif %}
{%- endblock %}
{%- block footer %}
{%- if not site %}{{ super() }}{% endif %}
{%- endblock %}
|