Move all files to sculpin/

This commit is contained in:
Oliver Davies 2025-10-01 00:01:33 +01:00
parent c5d71803a5
commit 0f61b4e9ee
1514 changed files with 0 additions and 0 deletions

View file

@ -1,25 +0,0 @@
{% if events %}
<section>
<h2>Events</h2>
<ul>
{% for event in events|sort((a, b) => b.date <=> a.date) %}
<li>
{% if event.url %}
<a href="{{ event.url }}">{{ event.name }}</a>
{% else %}
{{ event.name }}
{% endif %}
{% if event.location and not event.online %}
in {{ event.location }}
{% endif %}
- {{ event.date|date('F jS, Y') }}
{{ event.online ? '(online)' }}
</li>
{% endfor %}
</ul>
</section>
{% endif %}