Skip to content

Commit 47f6c27

Browse files
Xavier DenisXavier Denis
authored andcommitted
Include date and time in event page
1 parent bc761ea commit 47f6c27

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

content/meetings/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
title = "RFMIG meetings"
33
sort_by = "date"
44
render = false
5+
page_template = "meeting.html"
56
+++
67
meetings section

content/meetings/contracts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "Contracts in Rust"
3-
date = 2024-09-24
3+
date = 2024-09-24T19:00:00+02:00
44
+++
55

66
As the growing number of verification tools (Aeneas, Creusot, Kani, Prusti, Verus, ...) has shown, there is a growing community for formal verification of Rust code.
@@ -21,6 +21,6 @@ In this talk we present a vision for how we might get to this future, and some o
2121

2222
Felix has been working on the Rust compiler since before Rust 1.0; he was co-lead of the Rust compiler team from 2019 until 2023. Felix has taken on this work as part of a broader interest in enforcing safety and correctness properties for Rust code.
2323

24-
**Meeting Link**:
24+
**Meeting Link**: [https://ethz.zoom.us/j/68120170474](https://ethz.zoom.us/j/68120170474)
2525

2626
**Recording Link**:

templates/meeting.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{% extends "base.html" %}
2+
3+
{% block content %}
4+
<h1>{{ page.title }}</h1>
5+
<p><b>{{ page.date | date(format="%B %d %Y - %H:%M%Z") }}</b></p>
6+
7+
{{ page.content | safe }}
8+
9+
<p class="tags-data">
10+
{% if page.taxonomies.tags %}
11+
{% for tag in page.taxonomies.tags %}
12+
<a href="/tags/{{ tag | slugify }}">&#47;{{ tag }}&#47;</a>
13+
{% endfor %}
14+
{% endif %}
15+
</p>
16+
{% endblock content %}

0 commit comments

Comments
 (0)