X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/9e9f228abdf3f10d369b2699ffef29b59ff2bbf4..52de444faa10f37c4174e9fe2c75e77484342549:/data/templates/display.htm diff --git a/data/templates/display.htm b/data/templates/display.htm index da75cd9..799f94d 100644 --- a/data/templates/display.htm +++ b/data/templates/display.htm @@ -1,70 +1,28 @@ {% extends "base.htm" %} {% block title %} - {%if repo.getDescription %} - {{repo.getDescription}} - {%else%} - {{repo.id}} - {%endif%} + {{repo.getTitle}} {% endblock %} -{% block content %} -

{{repo.getDescription}}

-
-
- edit -
-
-

Paste #{{repo.id}}

-
-
-
- -
-
-
- -{% if repo.getCloneURL(true) or repo.getCloneURL(false) %} -
- {% if repo.getCloneURL(true) %} -
-
Public clone URL
- -
- {% endif %} - {% if repo.getCloneURL(false) %} -
-
Private clone URL
- -
- {% endif %} -
+{% block meta %} + +{% if repo.getCloneURL(true) %} + +{% endif %} +{% if repo.getCloneURL(false) %} + {% endif %} +{% endblock %} + +{% block content %} + {% include 'display-head.htm' %} {% for file in repo.getFiles %} -
-
- raw -

{{file.getFilename}}

-
-
- {{file.getHighlightedContent|raw}} -
-
+ {% include 'display-file.htm' %} {% endfor %} -
-
- - Delete - -
-
+ {% include 'display-foot.htm' %} {% endblock %} {% block sidebar %} -sidebar FIXME + {% include 'display-sidebar-history.htm' %} {% endblock %}