diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-08 19:09:24 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-08 19:09:24 -0400 |
commit | 86b5bbdd05881b612783069367b10125c28bfdee (patch) | |
tree | 83e985a95a91e22f9a72ebfcef68327883261e56 | |
parent | b7170b01b47a825d9de5664a0e8865ee5f655908 (diff) |
Improve rendering on mobile by setting page width to device width.
-rw-r--r-- | theme.scm | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -53,6 +53,8 @@ `((doctype "html") (head (meta (@ (charset "utf-8"))) + (meta (@ (name "viewport") + (content "width=device-width, initial-scale=1"))) (title ,(string-append title " — " (site-title site))) (link (@ (rel "alternate") (type "application/atom+xml") |