layout.html 768B

1234567891011121314151617181920
  1. {%- extends "basic/layout.html" %}
  2. {%- block extrahead %}
  3. {{ super() }}
  4. {% if theme_touch_icon %}
  5. <link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
  6. {% endif %}
  7. <link media="only screen and (max-device-width: 480px)" href="{{
  8. pathto('_static/small_flask.css', 1) }}" type= "text/css" rel="stylesheet" />
  9. <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
  10. {% endblock %}
  11. {%- block relbar2 %}{% endblock %}
  12. {%- block relbar1 %}{% endblock %}
  13. {%- block sidebarsearch %}{% endblock %}
  14. {%- block sidebarsourcelink %}{% endblock %}
  15. {%- block sidebartoc %}{% endblock %}
  16. {%- block footer %}
  17. <div class="footer">
  18. &copy; Copyright {{ copyright }}.
  19. </div>
  20. {%- endblock %}