aboutsummaryrefslogtreecommitdiff
path: root/data/templates/display.htm
blob: 799f94d669757ef33b6339c8342f64f493b2f517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "base.htm" %}
{% block title %}
 {{repo.getTitle}}
{% endblock %}

{% block meta %}
<link rel="meta" title="DOAP" type="application/rdf+xml" href="{{repo.getLink('doap')}}"/>
{% if repo.getCloneURL(true) %}
  <link rel="vcs-git" href="{{repo.getCloneURL(true)}}" title="{{repo.getTitle}} git repository"/>
{% endif %}
{% if repo.getCloneURL(false) %}
  <link rel="vcs-git" href="{{repo.getCloneURL(false)}}" title="{{repo.getTitle}} git repository"/>
{% endif %}
{% endblock %}

{% block content %}
 {% include 'display-head.htm' %}

{% for file in repo.getFiles %}
 {% include 'display-file.htm' %}
{% endfor %}

 {% include 'display-foot.htm' %}
{% endblock %}

{% block sidebar %}
 {% include 'display-sidebar-history.htm' %}
{% endblock %}