render xsl
[phorkie.git] / data / templates / display.htm
1 {% extends "base.htm" %}
2 {% block title %}{{repo.getTitle}}{% endblock %}
3
4 {% block meta %}
5 <link rel="meta" title="DOAP" type="application/rdf+xml" href="{{repo.getLink('doap')}}"/>
6 {% if repo.getCloneURL(true) %}
7   <link rel="vcs-git" href="{{repo.getCloneURL(true)}}" title="{{repo.getTitle}}"/>
8 {% endif %}
9 {% if repo.getCloneURL(false) %}
10   <link rel="vcs-git" href="{{repo.getCloneURL(false)}}" title="{{repo.getTitle}}"/>
11 {% endif %}
12 {% endblock %}
13
14 {% block content %}
15  {% include 'display-head.htm' %}
16
17 {% for file in repo.getFiles %}
18  {% include 'display-file.htm' %}
19 {% endfor %}
20
21  {% include 'display-foot.htm' %}
22 {% endblock %}
23
24 {% block sidebar %}
25  {% include 'display-sidebar-owner.htm' %}
26  {% include 'display-sidebar-fork.htm' %}
27  {% include 'display-sidebar-history.htm' %}
28 {% endblock %}