mirror of
https://github.com/Noratrieb/website.git
synced 2026-03-14 21:26:09 +01:00
This commit is contained in:
parent
c2c0d9843d
commit
4f136e662f
4 changed files with 9 additions and 4 deletions
|
|
@ -39,6 +39,7 @@ struct Talk {
|
||||||
#[serde(skip_deserializing)]
|
#[serde(skip_deserializing)]
|
||||||
dir_name: String,
|
dir_name: String,
|
||||||
hidden: Option<bool>,
|
hidden: Option<bool>,
|
||||||
|
recording: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Talk {
|
impl Talk {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
[slides]
|
[slides]
|
||||||
talks = [
|
talks = [
|
||||||
{ name = "How to contribute to the Rust project", location = "Rust Zürisee", date = "2024-01-17" },
|
{ name = "How Rust compiles", location = "EuroRust Paris 2025", date = "2025-10-10", recording = "https://youtu.be/G1g6Me1FHmE" },
|
||||||
{ name = "How Rust compiles", location = "EuroRust Paris 2025", date = "2025-10-10" },
|
{ name = "How to contribute to the Rust project", location = "Rust Zürisee", date = "2024-01-17", recording = "https://www.youtube.com/live/Ptl6kOZM9GI?t=740" },
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,5 @@
|
||||||
rustup
|
rustup
|
||||||
hugo
|
hugo
|
||||||
nodejs
|
nodejs
|
||||||
nodePackages.live-server
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,12 @@
|
||||||
<div>
|
<div>
|
||||||
<h2>{{ talk.date }} - {{ talk.name }}</h2>
|
<h2>{{ talk.date }} - {{ talk.name }}</h2>
|
||||||
<p>{{ talk.location }}</p>
|
<p>{{ talk.location }}</p>
|
||||||
<a href="{{ talk.dir_name }}">{{ talk.dir_name }}</a>
|
<p>
|
||||||
|
<a href="{{ talk.dir_name }}">slides</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="{{ talk.recording }}">recording</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue