aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2023-07-16 17:22:44 -0400
committerXe Iaso <me@xeiaso.net>2023-07-16 17:22:44 -0400
commitcab6efd92701f53dd41c5dbdf4d14651d78ad8d6 (patch)
tree40455d2ec4632bc10fb781fbcdfad6753f97cee9 /src/main.rs
parent2b7d1f0f864fbdca242ce5714c7977de495bed03 (diff)
downloadxesite-xedium.tar.xz
xesite-xedium.zip
xedium groundworkxedium
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 90f8fba..dbb7ab6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -169,6 +169,8 @@ async fn main() -> Result<()> {
.route("/talks/:name", get(handlers::talks::post_view))
// junk google wants
.route("/sitemap.xml", get(handlers::feeds::sitemap))
+ // tailwind for Xedium
+ .route("/.within/css/blog/:name", get(handlers::tailwind::post_view))
// static files
.nest_service("/static", files)
.fallback(handlers::not_found)