aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/pages/layout.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-01-11 16:27:16 +0100
committermetamuffin <metamuffin@disroot.org>2023-01-11 16:27:16 +0100
commit948700d35f0eddbc2e0fd29548991e687362983d (patch)
tree29592f56a5db4998b03c4ddf6c330b25dfcad393 /src/frontend/pages/layout.rs
parent0d81cb164983fdb40a9f0daebd5951d3cdc084e6 (diff)
downloadjellything-948700d35f0eddbc2e0fd29548991e687362983d.tar
jellything-948700d35f0eddbc2e0fd29548991e687362983d.tar.bz2
jellything-948700d35f0eddbc2e0fd29548991e687362983d.tar.zst
move files
Diffstat (limited to 'src/frontend/pages/layout.rs')
-rw-r--r--src/frontend/pages/layout.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/frontend/pages/layout.rs b/src/frontend/pages/layout.rs
deleted file mode 100644
index 5654d3b..0000000
--- a/src/frontend/pages/layout.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-use markup::Render;
-
-markup::define! {
- Layout<Main: Render>(title: String, main: Main) {
- @markup::doctype()
- html {
- head {
- title { @title " - Jellything" }
- link[rel="stylesheet", href="/assets/style.css"];
- }
- body {
- nav {
- h1 { "Jellything" }
-
- }
- #main { @main }
- }
- }
- }
-}