xml mime type
[phorkie.git] / data / templates / display.htm
1 {% extends "base.htm" %}
2 {% block title %}{{description}}{% endblock %}
3
4 {% block content %}
5 <h1>{{repo.getDescription}}</h1>
6 <ul class="links">
7  <li><a href="{{repo.getLink('edit')}}">edit</a></li>
8  <li><a href="{{repo.getLink('fork')}}">fork</a></li>
9 </ul>
10 {% for file in repo.getFiles %}
11 <div>
12  <h2 id="{{file.getFilename}}">{{file.getFilename}}<a class="anchorlink" href="#{{file.getFilename}}"></a></h2>
13  <p>
14   <a href="{{file.getLink('raw')}}">raw</a>
15  </p>
16  {{file.getHighlightedContent|raw}}
17 </div>
18 {% endfor %}
19 {% endblock %}