oliverdavies.uk/source/archive.html

49 lines
1.5 KiB
HTML
Raw Normal View History

2024-01-03 20:00:00 +00:00
---
2025-01-15 12:00:00 +00:00
layout: page
2024-08-04 21:14:36 +00:00
title: The Daily Drupaler
2024-08-21 00:09:23 +00:00
meta:
2024-09-19 23:57:27 +00:00
title: The Daily Drupaler - Daily Software Development Thoughts and Tips | %site.name%
2024-08-21 00:09:23 +00:00
description: |-
2024-09-19 23:57:27 +00:00
Daily Software Development Thoughts and Tips by %site.name%.
2024-01-03 20:00:00 +00:00
generator: pagination
pagination:
max_per_page: 30
provider: data.daily_emails
use:
- daily_emails
---
{% block content %}
2024-10-01 11:00:00 +00:00
{% set daily_emails = data.daily_emails|filter((email) => email.date <= 'now'|date) %}
<p>This is an archive of the {{ daily_emails|length|number_format }} email messages I have sent to <a href="/daily">my daily mailing list</a> since the 12th of August, 2022. Enjoy!</p>
<div class="mt-6 space-y-16">
2024-01-03 20:00:00 +00:00
<div>
<ul>
{% for email in page.pagination.items %}
<li>
<a href="{{ email.url }}">
{{ email.date|date('jS F Y') }}:
{{ email.title }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% if page.pagination.previous_page or page.pagination.next_page %}
<nav class="flex justify-center pt-10 space-x-6">
{% if page.pagination.previous_page %}<a href="{{ site.url }}{{ page.pagination.previous_page.url }}">&larr; Newer Posts{% endif %}<br />
{% if page.pagination.next_page %}<a href="{{ site.url }}{{ page.pagination.next_page.url }}">Older Posts &rarr;</a>{% endif %}<br />
</nav>
{% endif %}
</div>
{% endblock %}
{% block content_bottom %}
{% include 'daily-email-form.html.twig' %}
{% include 'about-me.html.twig' %}
{% endblock %}