aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
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)