From e545abeb1a3f7f0a98cea64b72e6b742b483ce7b Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Tue, 24 May 2022 17:45:16 -0400 Subject: [PATCH] templates/{blog,talk}post: clarify time zone Apparently the fact that my blog runs on UTC is surprising to people. Signed-off-by: Xe Iaso --- templates/blogpost.rs.html | 2 +- templates/talkpost.rs.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/blogpost.rs.html b/templates/blogpost.rs.html index dfbc1a4..d8b9ab0 100644 --- a/templates/blogpost.rs.html +++ b/templates/blogpost.rs.html @@ -66,7 +66,7 @@ @if Utc::today().num_days_from_ce() < post.date.num_days_from_ce() {
- @:mara("hacker", "Mara", Html(format!(r#"Hey, this post is set to go live to the public on {}. Right now you are reading a pre-publication version of this post. Please do not share this on social media. This post will automatically go live for everyone on the intended publication date. If you want access to these posts, please join the Patreon. It helps me afford the copyeditor that I contract for the technical content I write."#, post.detri()))) + @:mara("hacker", "Mara", Html(format!(r#"Hey, this post is set to go live to the public on {} UTC. Right now you are reading a pre-publication version of this post. Please do not share this on social media. This post will automatically go live for everyone on the intended publication date. If you want access to these posts, please join the Patreon. It helps me afford the copyeditor that I contract for the technical content I write."#, post.detri())))
} else { diff --git a/templates/talkpost.rs.html b/templates/talkpost.rs.html index b2f64ce..231d64f 100644 --- a/templates/talkpost.rs.html +++ b/templates/talkpost.rs.html @@ -50,7 +50,7 @@ @if Utc::today().num_days_from_ce() < post.date.num_days_from_ce() {
- @:mara("hacker", "Mara", Html(format!(r#"Hey, this post is set to go live to the public on {}. Right now you are reading a pre-publication version of this post. Please do not share this on social media. This post will automatically go live for everyone on the intended publication date. If you want access to these posts, please join the Patreon. It helps me afford the copyeditor that I contract for the technical content I write."#, post.detri()))) + @:mara("hacker", "Mara", Html(format!(r#"Hey, this post is set to go live to the public on {} UTC. Right now you are reading a pre-publication version of this post. Please do not share this on social media. This post will automatically go live for everyone on the intended publication date. If you want access to these posts, please join the Patreon. It helps me afford the copyeditor that I contract for the technical content I write."#, post.detri())))
} else {