diff options
author | tpart <tpart120@proton.me> | 2023-12-22 15:36:09 +0100 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2023-12-22 15:36:09 +0100 |
commit | 767fa7ee8625cfe0a91a6b5d18d0a5072c341ffc (patch) | |
tree | ce41307f7019032c1f150db78ba83de16177523b /server/src/routes | |
parent | 0bd6da689abe0193c6537c09509613f8897cc823 (diff) | |
download | jellything-767fa7ee8625cfe0a91a6b5d18d0a5072c341ffc.tar jellything-767fa7ee8625cfe0a91a6b5d18d0a5072c341ffc.tar.bz2 jellything-767fa7ee8625cfe0a91a6b5d18d0a5072c341ffc.tar.zst |
Add meta to html
Diffstat (limited to 'server/src/routes')
-rw-r--r-- | server/src/routes/ui/layout.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/routes/ui/layout.rs b/server/src/routes/ui/layout.rs index d12dc26..d4d443c 100644 --- a/server/src/routes/ui/layout.rs +++ b/server/src/routes/ui/layout.rs @@ -33,6 +33,7 @@ markup::define! { html { head { title { @title " - " @CONF.brand } + meta[name="viewport", content="width=device-width, initial-scale=1.0"]; link[rel="stylesheet", href="/assets/style.css"]; script[src="/assets/bundle.js"] {} } |