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.
 
 
 
 
 
 

25 lines
728 B

{% 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">
{{entry.month}} {{entry.year}}
</p>
</li>
{% endfor %}
</ul>
</main>
<script src="/js/filter-search.js"></script>
{% endblock %}