X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/5f427dd38c8d47711ea73015076bb390761e05dd..52de444faa10f37c4174e9fe2c75e77484342549:/data/templates/display.htm?ds=sidebyside diff --git a/data/templates/display.htm b/data/templates/display.htm index ea2e2cd..799f94d 100644 --- a/data/templates/display.htm +++ b/data/templates/display.htm @@ -1,16 +1,28 @@ {% extends "base.htm" %} -{% block title %}{{description}}{% endblock %} +{% block title %} + {{repo.getTitle}} +{% endblock %} + +{% block meta %} + +{% if repo.getCloneURL(true) %} + +{% endif %} +{% if repo.getCloneURL(false) %} + +{% endif %} +{% endblock %} {% block content %} -

{{repo.getDescription}}

-

edit

+ {% include 'display-head.htm' %} + {% for file in repo.getFiles %} -
-

{{file.getFilename}}

-

- raw -

-
{{file.getContent}}
-
+ {% include 'display-file.htm' %} {% endfor %} + + {% include 'display-foot.htm' %} +{% endblock %} + +{% block sidebar %} + {% include 'display-sidebar-history.htm' %} {% endblock %}