diff options
Diffstat (limited to 'templates/packages/files.html')
-rw-r--r-- | templates/packages/files.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/packages/files.html b/templates/packages/files.html index 24f55819..145bcf24 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -1,11 +1,11 @@ {% extends "base.html" %} - +{% block title %}Pkg: {{ pkg.pkgname }} - Arch Linux Package File List{% endblock %} {% block content %} - <div class="box"> - <h3>Viewing Files: {{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h3> - {% for file in files %} - {{ file.path }}<br /> - {% endfor %} - </div> + <div class="box"> + <h3>Viewing Files: {{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h3> + {% for file in files %} + {{ file.path }}<br /> + {% endfor %} + </div> {% endblock %} |