~alcinnz/bureaucromancy

ref: 680706daf93b5e0ac346df89fe691735bf12b18e bureaucromancy/tpl/files.html -rw-r--r-- 472 bytes
680706da — Adrian Cochrane Add week & color input support! 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{%- block main -%}
  <ul>{% for ancestor in path %}{% if ancestor %}
    <li><a href="{{ ancestor.link }}">{{ ancestor.name }}</a></li>
  {% endif %}{% endfor %}</ul>
  <ul>{% for dir in dirs %}
    <li><a href="{{ dir }}/">{{ dir }}</a></li>
  {% endfor %}</ul>
  <ul>{% for file in files %}
    <li><a href="/{{ input.index }}/={{ path|xURI }}{{ '/'|xURI }}{{ file|xURI }}">
      {{ file }}
    </a></li>
  {% endfor %}</ul>
{%- endblock -%}