28 lines
790 B
Cheetah
28 lines
790 B
Cheetah
{# -*- coding: utf-8 -*- #}
|
|
{% extends 'base.tmpl' %}
|
|
{% import 'crumbs.tmpl' as ui with context %}
|
|
|
|
{% block content %}
|
|
{{ ui.bar(crumbs) }}
|
|
{% if folders or files %}
|
|
<ul class="list-unstyled">
|
|
{% for name in folders %}
|
|
<li><a href="{{ name }}"><i class="glyphicon glyphicon-folder-open"></i> {{ name }}</a>
|
|
{% endfor %}
|
|
{% for name in files %}
|
|
<li><a href="{{ name }}.html"><i class="glyphicon glyphicon-file"></i> {{ name }}</a>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% if code %}
|
|
{{ code }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block sourcelink %}
|
|
{% if source_link %}
|
|
<a class="btn btn-fab btn-raised btn-material-indigo" target="_blank" href="{{ source_link }}" title="{{ messages("Source") }}">
|
|
<i class="mdi-file-cloud-download"></i>
|
|
</a>
|
|
{% endif %}
|
|
{% endblock %}
|