1f33b61ae1a67a1c285c81e1e7ee2339cd4c1fe4
[phorkie.git] / data / templates / display.htm
1 {% extends "base.htm" %}
2 {% block title %}{{description}}{% endblock %}
3
4 {% block content %}
5 <h1>{{description}}</h1>
6 <p><a href="{{links.edit}}">edit</a></p>
7 {% for file in files %}
8 <div>
9  <h2>{{file.filename}}</h2>
10  <p>
11   <a href="{{file.raw}}">raw</a>
12  </p>
13  <pre>{{file.content}}</pre>
14 </div>
15 {% endfor %}
16 {% endblock %}