From 57eb35939f02cedef1bc6833cf029da34d956d11 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 21 Feb 2024 23:43:59 -0500 Subject: Start styling - make the columns a readable width. --- layouts/_default/baseof.html | 1 + static/site.css | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 static/site.css diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 1714af4..1297971 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -7,6 +7,7 @@ {{- with .OutputFormats.Get "rss" }} {{- end }} + {{- block "opengraph" . }} {{- if .Title }}{{ end }} {{- if .Summary }}{{ end }} diff --git a/static/site.css b/static/site.css new file mode 100644 index 0000000..ae2d464 --- /dev/null +++ b/static/site.css @@ -0,0 +1,5 @@ +body { + max-width: 40em; + margin-left: auto; + margin-right: auto; +} -- cgit v1.2.3