diff options
Diffstat (limited to 'templates/repo.html')
-rw-r--r-- | templates/repo.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/repo.html b/templates/repo.html new file mode 100644 index 0000000..db03325 --- /dev/null +++ b/templates/repo.html @@ -0,0 +1,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 %} + |