mirror-crappy-reverie/_pages/archive.md

21 lines
592 B
Markdown
Raw Normal View History

---
layout: page
permalink: /archive/
2023-04-18 10:18:15 +00:00
title: Archive
---
<div id="archives">
<section id="archive">
2023-04-18 10:18:15 +00:00
<ul class="date-order">
<h3>Most Recent Posts</h3>
2023-04-18 10:18:15 +00:00
{%for post in site.posts %}
{% if post.visiblity == "public" %}
<p><b><a href="{{ site.baseurl }}{{ post.url }}">{% if post.title and post.title != "" %}{{post.title}}{% else %}{{post.excerpt |strip_html}}{%endif%}</a></b> - {% if post.date and post.date != "" %}{{ post.date | date: "%e %B %Y" }}{%endif%}</p>
2023-04-18 10:18:15 +00:00
{% endif %}
{% endfor %}
</ul>
<h3>Oldest Posts</h3>
</section>
</div>