blob: f76b5600d49fa3a5050b8184d10216c0adbe59ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{# -*- coding: utf-8 -*- #}
{% extends 'base.tmpl' %}
{% import 'ui_helper.tmpl' as ui with context %}
{% block content %}
{{ ui.breadcrumbs(crumbs) }}
{% if folders or files %}
<ul>
{% for name in folders %}
<li><a href="{{ name|e }}">📂 {{ name|e }}</a>
{% endfor %}
{% for name in files %}
<li><a href="{{ name|e }}.html">📄 {{ name|e }}</a>
{% endfor %}
</ul>
{% endif %}
{% if code %}
<h1>{{ title }}
{% if source_link %}
<small><a href="{{ source_link }}">({{ messages("Source") }})</a></small>
{% endif %}
</h1>
{{ code }}
{% endif %}
{% endblock %}
{% block sourcelink %}
{% if source_link and show_sourcelink %}
{{ ui.show_sourcelink(source_link) }}
{% endif %}
{% endblock %}
|