This commit is contained in:
2023-08-29 21:33:59 +02:00
parent dab809be5c
commit f2414baf9a
4 changed files with 656 additions and 55 deletions

View File

@@ -23,13 +23,13 @@ impl Root {
html {
head {
title { "Packager" }
script src="https://unpkg.com/htmx.org@1.7.0" {}
script src="https://unpkg.com/htmx.org@1.9.2" {}
script src="https://cdn.tailwindcss.com" {}
script src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.js" defer {}
link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@6.9.96/css/materialdesignicons.min.css";
script { (include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/js/app.js"))) }
}
body {
body hx-boost="true" {
header
."bg-gray-200"
."p-5"
@@ -53,11 +53,7 @@ impl Root {
}} { "Trips" }
}
}
div
hx-boost="true"
{
(body)
}
(body)
}
}
)