]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/modules/package-header.html
Drop dependency on textile
[people/jschlag/pbs.git] / src / templates / modules / package-header.html
1 <div class="lead lead-small ac">
2 {% module Text(pkg.description) %}
3 </div>
4
5 <hr>
6
7 <dl class="dl-horizontal">
8 {% if pkg.url %}
9 <dt>{{ _("Home") }}</dt>
10 <dd>{% raw linkify(pkg.url, shorten=True) %}</dd>
11 {% end %}
12
13 {% if pkg.license %}
14 <dt>{{ _("License") }}</dt>
15 <dd>{{ pkg.license }}</dd>
16 {% end %}
17
18 {% if pkg.groups %}
19 <dt>{{ _("Group", "Groups", len(pkg.groups)) }}</dt>
20 <dd>{{ locale.list(pkg.groups) }}</dd>
21 {% end %}
22
23 {% if pkg.maintainer %}
24 <dt>{{ _("Maintainer") }}</dt>
25 <dd>{% module Maintainer(pkg.maintainer) %}</dd>
26 {% end %}
27 </dl>