From 587461675a023aed3ca3f74e6decaefd6e78b80f Mon Sep 17 00:00:00 2001 From: Kian Kasad Date: Fri, 11 Dec 2020 12:15:26 -0800 Subject: [PATCH] don't use h4 tag in figure captions --- assets/css/post-single.css | 7 +++++++ layouts/shortcodes/figure.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 layouts/shortcodes/figure.html diff --git a/assets/css/post-single.css b/assets/css/post-single.css index 084ffad310..8e4e61b248 100644 --- a/assets/css/post-single.css +++ b/assets/css/post-single.css @@ -224,6 +224,13 @@ border-radius: 4px } +.post-content figure > figcaption { + color: var(--primary); + font-size: 16px; + font-weight: bold; + margin: 24px 0 16px; +} + .toc { margin-bottom: 40px; border: 1px solid var(--border); diff --git a/layouts/shortcodes/figure.html b/layouts/shortcodes/figure.html new file mode 100644 index 0000000000..71aebb15ab --- /dev/null +++ b/layouts/shortcodes/figure.html @@ -0,0 +1,28 @@ + + {{- if .Get "link" -}} + + {{- end }} + {{ with .Get + {{- if .Get "link" }}{{ end -}} + {{- if or (or (.Get "title") (.Get "caption")) (.Get "attr") -}} +
+ {{ with (.Get "title") -}} + {{ . }} + {{- end -}} + {{- if or (.Get "caption") (.Get "attr") -}}

+ {{- .Get "caption" | markdownify -}} + {{- with .Get "attrlink" }} + + {{- end -}} + {{- .Get "attr" | markdownify -}} + {{- if .Get "attrlink" }}{{ end }}

+ {{- end }} +
+ {{- end }} +