Add calendar
This commit is contained in:
33
calendar.html
Normal file
33
calendar.html
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
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>
|
||||
Reference in New Issue
Block a user