LEFT | RIGHT |
(no file at all) | |
1 {% import "forms.html" as forms %} | 1 {% import "forms.html" as forms %} |
2 {% extends "base.html" %} | 2 {% extends "base.html" %} |
3 | 3 |
4 {% import "snippets.html" as snippets with context %} | 4 {% import "snippets.html" as snippets with context %} |
5 {% set logo = snippets.logo() %} | 5 {% set logo = snippets.logo() %} |
6 {% set before_header = snippets.before_header() %} | 6 {% set before_header = snippets.before_header() %} |
7 {% set after_header = snippets.after_header() %} | 7 {% set after_header = snippets.after_header() %} |
8 {% set before_footer = snippets.before_footer() %} | 8 {% set before_footer = snippets.before_footer() %} |
9 {% set after_footer = snippets.after_footer() %} | 9 {% set after_footer = snippets.after_footer() %} |
10 {% set license_info = snippets.license_info() %} | 10 {% set license_info = snippets.license_info() %} |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 {%- endif %} | 76 {%- endif %} |
77 <span id="moin-pagelocation"> | 77 <span id="moin-pagelocation"> |
78 <span class="moin-pagepath"> | 78 <span class="moin-pagepath"> |
79 {% for segment_name, segment_path, exists in theme_supp.location
_breadcrumbs(item_name) -%} | 79 {% for segment_name, segment_path, exists in theme_supp.location
_breadcrumbs(item_name) -%} |
80 {% if not loop.last -%} | 80 {% if not loop.last -%} |
81 <a href="{{ url_for('frontend.show_item', item_name=segm
ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}> | 81 <a href="{{ url_for('frontend.show_item', item_name=segm
ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}> |
82 {{ segment_name|shorten_item_name }} | 82 {{ segment_name|shorten_item_name }} |
83 </a> | 83 </a> |
84 <span class="sep">/</span> | 84 <span class="sep">/</span> |
85 {% else %} | 85 {% else %} |
86 » » {% if title_name %} | 86 {% if title_name %} |
87 {{ title_name }} | 87 {{ title_name }} |
88 {% else %} | 88 {% else %} |
89 <a href="{{ url_for('frontend.show_item', item_name=segm
ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}> | 89 <a href="{{ url_for('frontend.show_item', item_name=segm
ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}> |
90 {{ segment_name|shorten_item_name }} | 90 {{ segment_name|shorten_item_name }} |
91 </a> | 91 </a> |
92 » » {%- endif %} | 92 {%- endif %} |
93 {%- endif %} | 93 {%- endif %} |
94 {%- endfor %} | 94 {%- endfor %} |
95 </span> | 95 </span> |
96 </span> | 96 </span> |
97 </div> | 97 </div> |
98 | 98 |
99 {% set trail_items = theme_supp.path_breadcrumbs() %} | 99 {% set trail_items = theme_supp.path_breadcrumbs() %} |
100 {% if trail_items %} | 100 {% if trail_items %} |
101 <div id="moin-pagetrail"> | 101 <div id="moin-pagetrail"> |
102 {% for wiki_name, item_name, item_href, exists, err in trail_items %} | 102 {% for wiki_name, item_name, item_href, exists, err in trail_items %} |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 {{ creditlogos }} | 168 {{ creditlogos }} |
169 {% block footer_meta %}{% endblock %} | 169 {% block footer_meta %}{% endblock %} |
170 {% if license_info %}<p id="moin-wikilicense">{{ license_info }}</p>{% endif
%} | 170 {% if license_info %}<p id="moin-wikilicense">{{ license_info }}</p>{% endif
%} |
171 {{ credits }} | 171 {{ credits }} |
172 {% endblock %} | 172 {% endblock %} |
173 </div> | 173 </div> |
174 | 174 |
175 {{ after_footer }} | 175 {{ after_footer }} |
176 | 176 |
177 {% endblock %} | 177 {% endblock %} |
LEFT | RIGHT |