www.duckland.org/themes/bootstrap3/templates/listing.tmpl
2015-06-09 22:50:31 -05:00

28 lines
642 B
Cheetah

## -*- coding: utf-8 -*-
<%inherit file="base.tmpl"/>
<%namespace name="ui" file="crumbs.tmpl" import="bar"/>
<%block name="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
</%block>
<%block name="sourcelink">
% if source_link:
<li>
<a href="${source_link}" id="sourcelink">${messages("Source")}</a>
</li>
% endif
</%block>