Blob caca/theme/www.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>{{ page.title }}</title> <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🍄</text></svg>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="generator" content="caca - https://caio.co/de/caca"> <style> body { font: 1.2rem/1.5 sans-serif; max-width: 88ch; padding: 2.5rem 1.75rem; word-wrap: break-word; tab-size: 4; } h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-family: sans-serif; } h1 { font-size: 2.45rem; } a:focus { outline: 0.2rem solid; outline-offset: 0.4rem; } p { margin-bottom: 2rem; } ul, ol { margin-top: 0; margin-bottom: 2.25rem; } img { max-width: 100%; } blockquote { border-left: 2px lightgray solid; padding-left: 0.5rem; } </style> </head> <body> {{ content|safe }} </body> </html> |