-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathevent.html
More file actions
44 lines (43 loc) · 1.42 KB
/
Copy pathevent.html
File metadata and controls
44 lines (43 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: page
---
<div class="header-card calendar-button">
<div class="fixed-width">
<h1>{{ page.title }}</h1>
{% include calendar-button.html %}
</div>
</div>
<div class="main">
<div class="fixed-width">
<div class="column l-4-12">
<div class="card thin-card">
<ul class="detail-list">
<li class="event-date">
<i class="fa-solid fa-fw fa-clock" aria-hidden="true"></i>
{% comment %}
{# Changing the format here? Also change the event page and the localise_times function #}
{% endcomment %}
{% assign date_only_format = '%e %B %Y <small class="muted">(time <abbr title="To be confirmed">TBC</abbr>)</small>' %}
{% include datetime.html date_only_format=date_only_format datetime_format='%e %B %Y at %l%P' time_only_format = '%l%P' event=page %}
</li>
<li><i class="fa-solid fa-fw fa-location-dot" aria-hidden="true"></i> {{ page.location }}</li>
</ul>
</div>
</div>
<div class="column l-8-12">
<div class="card">
<div class="article article-preview">
<div class="article-content">
{{ content }}
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" defer>
// function is defined in js/localise-times.js
window.addEventListener('load', function() {
localise_times('{{ site.timezone }}');
});
</script>