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.
 
 
 
 
 
 

21 lines
593 B

{% extends "layouts/default.html" %}
{% block title %}{{system-data.first.site-name}}: Pages Index{% endblock %}
{% block content %}
<main class="fe-index">
<h1>Pages Index</h1>
<input type="text"
id="fe-search-filter"
placeholder="Filter Pages by typing here...">
<ul id="fe-search-filter-list">
{% for page in pages %}
{% if page.can-delete == 1 %}
<li class="fe-index-entry">
<a href="/view/page/{{page.slug}}">{{page.title}}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</main>
{% endblock %}