diff options
author | Ben Sima <ben@bsima.me> | 2020-05-14 11:12:04 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-05-14 11:12:04 -0700 |
commit | 66f61f0049d8ac056c916bace794d05c073f5707 (patch) | |
tree | 16906d48dcbf106945cdd9a56e024b4d0ac18935 /z.scm | |
parent | 9227a3cdda6767fc4b4275d15a81d8456aacb430 (diff) |
Scale appropriately for phone
Diffstat (limited to 'z.scm')
-rw-r--r-- | z.scm | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -206,7 +206,10 @@ NL < '\n' names paths))))))) (define (template title body) - `(html (head (title ,title)) + `(html (head + (title ,title) + (meta (@ (name "viewport") + (content "width=device-width, initial-scale=1")))) (style ,*css*) (body (h1 "z") |