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.
 
 
 
 
 
 

33 lines
1.1 KiB

{% extends "layouts/default.html" %}
{% block title %}{{system-data.first.site-name}}: Archive Index{% endblock %}
{% block content %}
<main class="fe-index">
<h1>Archive Index</h1>
<input type="text"
id="fe-search-filter"
placeholder="Filter Entries by typing here...">
<ul id="fe-search-filter-list">
{% for entry in archive-entries %}
<li class="fe-index-entry">
<a href="/view/archive/{{entry.slug}}">
{{entry.title}}
</a>
<p class="fe-hint">
Originally Published:
{{ entry.created-at | date: ((:day 2) "/" (:month 2) "/" (:year 4)) }}
</p>
<p class="fe-hint">
Added to Archive:
{{ entry.created-at | date: ((:day 2) "/" (:month 2) "/" (:year 4)) }}
</p>
<p class="fe-hint">
Last Archive Update:
{{ entry.updated-at | date: ((:day 2) "/" (:month 2) "/" (:year 4)) }}
</p>
</li>
{% endfor %}
</ul>
</main>
{% endblock %}