diff options
author | Matt Singleton <matt@xcolour.net> | 2022-01-15 12:50:28 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2022-01-16 13:04:41 -0600 |
commit | fdf5165ebb37cf7cf7c02bec0f7c35f800ade755 (patch) | |
tree | db540cd0ac11ac7afd4469a87158f2c8a88e3b52 /page_template.html | |
parent | 72e2b1675b300d9ffde1b93a1f2f567df49343cf (diff) |
html template
Diffstat (limited to 'page_template.html')
-rw-r--r-- | page_template.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/page_template.html b/page_template.html new file mode 100644 index 0000000..2a4baf5 --- /dev/null +++ b/page_template.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html lang="en"> + <html> + <head> + <meta charset="$charset"/> + <style type="text/css"> +html { + font-size: 18px; + font-family: Garamond, Georgia, sans-serif; +} + +pre { + font-family: Courier, monospace; +} + +blockquote { + border-left: 5px solid #ddd; + padding: 0.6em 0.6em 0.2em; + font-style: italic; +} + +blockquote:before { + content: "\201C"; + display: inline-block; + padding-right: 0.4rem; + font-size: 4em; + line-height: 0; + vertical-align: -0.4em; + color: lightgrey; + margin-right: 0.1em; +} + +li.link::marker { + content: '⇒ '; +} + </style> + </head> + <body> +$body + </body> + </html> |