hash statics

This commit is contained in:
Robert Perce 2025-12-01 15:23:56 -06:00
parent a45bf45015
commit d925573629
12 changed files with 139 additions and 1464 deletions

View file

@ -1,6 +1,6 @@
use axum::RequestPartsExt;
use axum::extract::FromRequestParts;
// use axum::response::{IntoResponse, Redirect};
use cache_bust::asset;
use http::request::Parts;
use maud::{DOCTYPE, Markup, html};
use sqlx::FromRow;
@ -62,14 +62,14 @@ impl Layout {
(DOCTYPE)
html {
head {
link rel="stylesheet" type="text/css" href="/static/index.css";
link rel="stylesheet" type="text/css" href=(format!("/static/{}", asset!("index.css")));
meta name="viewport" content="width=device-width";
script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.7/dist/htmx.min.js" {}
script src="https://cdn.jsdelivr.net/npm/htmx-ext-response-targets@2.0.4" integrity="sha384-T41oglUPvXLGBVyRdZsVRxNWnOOqCynaPubjUVjxhsjFTKrFJGEMm3/0KGmNQ+Pg" crossorigin="anonymous" {}
script src="https://cdn.jsdelivr.net/npm/alpinejs@3.15.0/dist/cdn.min.js" defer {}
@if let Some(hrefs) = css {
@for href in hrefs {
link rel="stylesheet" type="text/css" href=(href);
link rel="stylesheet" type="text/css" href=(format!("/static/{}", href));
}
}
}