diff options
-rw-r--r-- | layouts/partials/head.html | 2 | ||||
-rw-r--r-- | static/css/common.css | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 29e9f49..4f1993a 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -41,5 +41,7 @@ <title>{{ .Title }} - {{ .Site.Title }}</title> {{ end }} + {{ template "_internal/opengraph.html" . }} + {{ block "head" . }}{{ end }} </head> diff --git a/static/css/common.css b/static/css/common.css index 8ec4016..2782a83 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -42,6 +42,10 @@ html { } } +ul { + margin-left: 1.2rem; +} + /* global */ * { |