diff --git a/templates/user/archive.html b/templates/user/archive.html index e64a27f..cde640c 100644 --- a/templates/user/archive.html +++ b/templates/user/archive.html @@ -1,18 +1,58 @@ {% extends "layouts/default.html" %} {% block title %}Manage the site's archive.{% endblock %} {% block content %} -

Archive

-{% for entry in archive-entries %} -
- {{entry.title}} - Edit - {% if roles.administrator %} -
- - - -
- {% endif %} +
+
+

Archive Index

+ +
+ {% for entry in archive-entries %} +
+
+ {{entry.title}} +

{{entry.title}}

+
+
+ + {{entry.title}} + + + {{entry.title}} + + {% if roles.administrator %} +
+ + + +
+ {% endif %} +
+
+ {% endfor %} +
+
-{% endfor %} {% endblock %} diff --git a/templates/user/pages.html b/templates/user/pages.html index 7fffe69..67611c7 100644 --- a/templates/user/pages.html +++ b/templates/user/pages.html @@ -1,21 +1,58 @@ {% extends "layouts/default.html" %} {% block title %}A list of the site's pages.{% endblock %} {% block content %} -

Pages

-{% for page in pages %} -{% if page.can-delete == 1 %} -
- {{page.title}} - Edit - {% if roles.administrator %} -
- - - -
- {% endif %} +
+
+

Pages Index

+ +
+ {% for page in pages %} + {% if page.can-delete == 1 %} +
+

{{page.title}}

+
+ + {{page.title}} + + + {{entry.title}} + + {% if roles.administrator %} +
+ + + +
+ {% endif %} +
+
+ {% endif %} + {% endfor %} +
+
-{% endif %} -{% endfor %} - {% endblock %}