about summary refs log tree commit diff
path: root/templates/repo.html
blob: db033257f01d13f49f726bf34b73175578c1ff0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block content %}
<h2>{{repo.name}}</h2>
{{repo.description}}

{% if readme %}
<h3>README</h3>
{{readme | safe}}
{% endif %}

<h3>Commit History</h3>
<ul>
{% for commit in commits %}
<li>{{commit}}
{% endfor %}
{% endblock %}