Public archive for the Return to Ritherdon project. https://www.nicolaellisandritherdon.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
300 B

{% extends "layouts/default.html" %}
{% block title %}A list of the site's pages.{% endblock %}
{% block content %}
<h1>Pages</h1>
{% for page in pages %}
<div>
{% if page.can-delete == 1 %}
<a href="/view/page/{{page.slug}}">{{page.title}}</a>
{% endif %}
</div>
{% endfor %}
{% endblock %}