X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/6d0777840e50ce98f3d96629b4e92bbdccd3001c..ac41dd93568256fe5f2cd75530e30bc9b7e1668d:/data/templates/display.htm diff --git a/data/templates/display.htm b/data/templates/display.htm index 1f33b61..5bcb016 100644 --- a/data/templates/display.htm +++ b/data/templates/display.htm @@ -1,16 +1,22 @@ {% extends "base.htm" %} -{% block title %}{{description}}{% endblock %} +{% block title %} + {{repo.getTitle}} +{% endblock %} + +{% block meta %} + +{% endblock %} {% block content %} -

{{description}}

-

edit

-{% for file in files %} -
-

{{file.filename}}

-

- raw -

-
{{file.content}}
-
+ {% include 'display-head.htm' %} + +{% for file in repo.getFiles %} + {% include 'display-file.htm' %} {% endfor %} + + {% include 'display-foot.htm' %} +{% endblock %} + +{% block sidebar %} + {% include 'display-sidebar-history.htm' %} {% endblock %}