blob: 16e1b0871cfe5476abdf6f9259c0979cf848af73 (
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
29
30
31
|
{% extends "base.htm" %}
{% block title %}{{repo.getTitle}}{% endblock %}
{% block meta %}
<link rel="meta" title="DOAP" type="application/rdf+xml" href="{{repo.getLink('doap')}}"/>
<link rel="alternate" title="oEmbed" type="application/json+oembed" href="{{repo.getLink('oembed-json', null, true)}}" />
<link rel="alternate" title="oEmbed" type="application/xml+oembed" href="{{repo.getLink('oembed-xml', null, true)}}" />
{% if repo.getCloneURL(true) %}
<link rel="vcs-git" href="{{repo.getCloneURL(true)}}" title="{{repo.getTitle}}"/>
{% endif %}
{% if repo.getCloneURL(false) %}
<link rel="vcs-git" href="{{repo.getCloneURL(false)}}" title="{{repo.getTitle}}"/>
{% 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-owner.htm' %}
{% include 'display-sidebar-fork.htm' %}
{% include 'display-sidebar-history.htm' %}
{% include 'display-sidebar-urls.htm' %}
{% endblock %}
|