diff --git a/templates/user/pages.html b/templates/user/pages.html new file mode 100644 index 0000000..d5a697c --- /dev/null +++ b/templates/user/pages.html @@ -0,0 +1,41 @@ +{% extends "layouts/default.html" %} +{% block title %}A list of the site's pages.{% endblock %} +{% block content %} +

Pages

+
+ {% if roles.logged-in %} + Dashboard + Edit Account +
+ + +
+
+ + +
+ Create Page + View Pages + {% if roles.administrator %} + Site Settings + Users + {% endif %} + {% else %} + Home + Log-in + {% endif %} +
+ +{% for page in pages %} +
+ {{page}} + Edit +
+ + + +
+
+{% endfor %} + +{% endblock %}