add new blog
This commit is contained in:
parent
4b71a0f116
commit
0e01bc6758
3 changed files with 63 additions and 3 deletions
10
src/main.rs
10
src/main.rs
|
@ -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",
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue