]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/sources.html
Donation page responsivness
[people/shoehn/ipfire.org.git] / templates / sources.html
CommitLineData
e2b0b0e4
MT
1{% extends "base.html" %}
2
3{% block title %}{{ _("Sources") }}{% end block %}
4
5{% block content %}
6 <h3>{{ _("Source Code") }}</h3>
7
8 <p>
9 {{ _("There are %s source files on the server.") % len(files) }}
10 </p>
11
12 <br class="clear" />
13
14 <ul class="sources">
15 {% for file in files %}
16 <li>
17 {{ file["hash"] }} |
18 <a href="/{{ file["dir"] }}/{{ file["name"] }}">{{ file["name"] }}</a>
19 ({{ file["size"] }})
20 </li>
21 {% end %}
22 </ul>
23{% end block %}