add new blog

This commit is contained in:
Nicholas Orlowsky 2024-12-28 13:34:58 -05:00
parent 4b71a0f116
commit 0e01bc6758
3 changed files with 63 additions and 3 deletions

View file

@ -113,10 +113,18 @@ async fn main() {
lazy_static! {
static ref blogs: HashMap<&'static str, BlogInfo<'static>> = {
let mut m = HashMap::new();
m.insert(
"11-28-2024-postmortem",
BlogInfo {
title: "Downtime Incident Postmortem (Nov 2024 - Present)",
date: "December 28th, 2024",
url: "11-28-2023-postmortem",
},
);
m.insert(
"11-08-2023-postmortem",
BlogInfo {
title: "Downtime Incident Postmortem",
title: "Downtime Incident Postmortem (Nov 2023)",
date: "November 11th, 2023",
url: "11-08-2023-postmortem",
},