mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-11 09:08:32 +02:00
29 lines
954 B
HTML
Executable file
29 lines
954 B
HTML
Executable file
{% if pagename == "index" %}
|
|
{% include "index.html" %}
|
|
{% else %}
|
|
{%- extends "basic/layout.html" %}
|
|
|
|
{%- block extrahead %}
|
|
{{ super() }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
|
<link rel="apple-touch-icon-precomposed" href="{{ pathto('_static/img/favicon-152.png', 1) }}">
|
|
<link rel="shortcut icon" href="{{ pathto('_static/img/favicon.ico', 1) }}">
|
|
{% endblock %}
|
|
{%- block relbar1 %}{% endblock %}
|
|
{%- block relbar2 %}{% endblock %}
|
|
|
|
{%- block sidebar2 %}
|
|
<aside>
|
|
<a href="{{ pathto('index') }}" id="logolink" title="jrnl"><img class="logo" src="{{ pathto('_static/img/logo.png', 1) }}" width="90px" height="98px" title="jrnl"/></a>
|
|
<h2>Documentation</h2>
|
|
{{ toctree() }}
|
|
{%- include "searchbox.html" %}
|
|
</aside>
|
|
{% endblock %}
|
|
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
{{ copyright }}
|
|
</div>
|
|
{%- endblock %}
|
|
{% endif %}
|