aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base-jinja/templates/listing.tmpl
blob: 7b6b3a60827f4a4add7355dfd6a23ac0a6ea9592 (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
{#  -*- 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 }}" class="listing-folder">{{ name|e }}</a>
{% endfor %}
{% for name in files %}
    <li><a href="{{ name|e }}.html" class="listing-file">{{ 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 %}