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