File: layout.html

package info (click to toggle)
flask-silk 0.2-21
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,364 kB
  • sloc: python: 184; makefile: 9
file content (18 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "basic/layout.html" %}
{% block header %}
  {{ super() }}
  {% if pagename == 'index' %}
  <div class=indexwrapper>
  {% endif %}
{% endblock %}
{% block footer %}
  {% if pagename == 'index' %}
  </div>
  {% endif %}
{% endblock %}
{# do not display relbars #}
{% block relbar1 %}{% endblock %}
{% block relbar2 %}
{% endblock %}
{% block sidebar1 %}{% endblock %}
{% block sidebar2 %}{% endblock %}