mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-05 05:10:04 +08:00
28 lines
924 B
HTML
28 lines
924 B
HTML
|
{%- extends "basic/layout.html" %}
|
||
|
{%- block extrahead %}
|
||
|
{{ super() }}
|
||
|
{% if theme_touch_icon %}
|
||
|
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
|
||
|
{% endif %}
|
||
|
<link media="only screen and (max-device-width: 480px)" href="{{
|
||
|
pathto('_static/small_flask.css', 1) }}" type= "text/css" rel="stylesheet" />
|
||
|
<a href="https://github.com/davidhalter/parso">
|
||
|
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me">
|
||
|
</a>
|
||
|
{% endblock %}
|
||
|
{%- block relbar2 %}{% endblock %}
|
||
|
{% block header %}
|
||
|
{{ super() }}
|
||
|
{% if pagename == 'index' %}
|
||
|
<div class=indexwrapper>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
{%- block footer %}
|
||
|
<div class="footer">
|
||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
|
||
|
</div>
|
||
|
{% if pagename == 'index' %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{%- endblock %}
|