aboutsummaryrefslogtreecommitdiff
path: root/src/tmpl
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2022-12-28 12:14:08 -0500
committerXe Iaso <me@christine.website>2022-12-28 12:14:08 -0500
commitb292f3830e43830308ebd8e8d17ab38e9ed2461b (patch)
tree951d70bbdbc1592d1984d322bec9cdbaaf558d59 /src/tmpl
parent3299a4fa2a58ba07b182b9f169493ba33dfbd6bb (diff)
downloadxesite-b292f3830e43830308ebd8e8d17ab38e9ed2461b.tar.xz
xesite-b292f3830e43830308ebd8e8d17ab38e9ed2461b.zip
Update to axum 0.6
Closes #579 Closes #580 Signed-off-by: Xe <me@christine.website>
Diffstat (limited to 'src/tmpl')
-rw-r--r--src/tmpl/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tmpl/mod.rs b/src/tmpl/mod.rs
index 79b8196..1fbb239 100644
--- a/src/tmpl/mod.rs
+++ b/src/tmpl/mod.rs
@@ -27,12 +27,12 @@ pub fn base(title: Option<&str>, styles: Option<&str>, content: Markup) -> Marku
}
}
meta name="viewport" content="width=device-width, initial-scale=1.0";
- link rel="stylesheet" href={"/css/hack.css?bustCache=" (*CACHEBUSTER)};
- link rel="stylesheet" href={"/css/gruvbox-dark.css?bustCache=" (*CACHEBUSTER)};
- link rel="stylesheet" href={"/css/shim.css?bustCache=" (*CACHEBUSTER)};
+ link rel="stylesheet" href={"/static/css/hack.css?bustCache=" (*CACHEBUSTER)};
+ link rel="stylesheet" href={"/static/css/gruvbox-dark.css?bustCache=" (*CACHEBUSTER)};
+ link rel="stylesheet" href={"/static/css/shim.css?bustCache=" (*CACHEBUSTER)};
@match now.month() {
12|1|2 => {
- link rel="stylesheet" href={"/css/snow.css?bustCache=" (*CACHEBUSTER)};
+ link rel="stylesheet" href={"/static/css/snow.css?bustCache=" (*CACHEBUSTER)};
}
_ => {},
}