blob: bb9d3f69252870b40f5772dc52118b8a7d33b9bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.htm" %}
{% block title %}{{repo.getTitle}} - revision {{repo.hash}}{% endblock %}
{% block meta %}
<meta name="robots" content="noindex,nofollow"/>
{% endblock %}
{% block content %}
{% include 'revision-head.htm' %}
{% for file in repo.getFiles %}
{% include 'display-file.htm' %}
{% endfor %}
{% endblock %}
{% block sidebar %}
{% include 'display-sidebar-history.htm' %}
{% endblock %}
|