aboutsummaryrefslogtreecommitdiff
path: root/templates/talkindex.rs.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/talkindex.rs.html')
-rw-r--r--templates/talkindex.rs.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/templates/talkindex.rs.html b/templates/talkindex.rs.html
deleted file mode 100644
index a7b2817..0000000
--- a/templates/talkindex.rs.html
+++ /dev/null
@@ -1,23 +0,0 @@
-@use crate::post::Post;
-@use super::{header_html, footer_html};
-@use chrono::prelude::*;
-
-@(posts: Vec<Post>)
-
-@:header_html(Some("Talks"), None)
-
-<h1>Talks</h1>
-
-<p>Here is a link to all of the talks I have done at conferences. Each of these will have links to the slides (PDF) as well as some brief information about them.</p>
-
-<p>If you have a compatible reader, be sure to check out my <a href="/blog.rss">RSS Feed</a> for automatic updates. Also check out the <a href="/blog.json">JSONFeed</a>.</p>
-
-<p>
- <ul>
- @for post in posts.iter().filter(|p| Utc::today().num_days_from_ce() >= p.date.num_days_from_ce()) {
- <li>@post.date.format("%Y-%m-%d") - <a href="/@post.link">@post.front_matter.title</a></li>
- }
- </ul>
-</p>
-
-@:footer_html()