retrospace-website/calendar.html
2023-05-05 12:55:38 +02:00

34 lines
696 B
HTML

---
layout: page
title: Calendar
permalink: /calendar/
---
<table class="calendar">
{% for event in site.data.calendar %}
<tr>
<td>{{ event.when }}</td>
<td>
{% if event.link %}
<a href="{{ event.link }}">{{ event.title }}</a>
{% else %}
{{ event.title }}
{% endif %}
</td>
<td>
{% if event.country %}
<span class="flag {{ event.country }}"></span>
{% endif %}
{{ event.where }}
</td>
</tr>
{% endfor %}
</table>
<p>
<small>
If you are missing an event in this list:
<a href="mailto:{{ site.author.email }}">drop us a line</a>
and we'll add it.
</small>
</p>