diff --git a/progit/templates/repo_master.html b/progit/templates/repo_master.html new file mode 100644 index 0000000..8ced7ac --- /dev/null +++ b/progit/templates/repo_master.html @@ -0,0 +1,77 @@ +{% extends "master.html" %} + +{% block title %}{{ repo.name }}{% endblock %} +{%block tag %}home{% endblock %} + + +{% block content %} +

+ {% if '/fork/' in request.url %} + + {% else %} + + {% endif %} + {{ repo.fullname }} + + {% if branchname %} ({{ branchname }}) {% endif %} +

+ +{% if repo.fork %} +
+ Forked from + + {{ repo.parent.name }} +
+{% endif %} + +
+ + +
+ +{% block repo %} +{% endblock %} + +{% endblock %}