summaryrefslogtreecommitdiff
path: root/data/templates/display.htm
blob: 6d84c463a510613ec3ea9554adc15d316ff667ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.htm" %}
{% block title %}
 {{repo.getTitle}}
{% 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 %}