diff --git a/assets/css/post-single.css b/assets/css/post-single.css index 084ffad3..8e4e61b2 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 00000000..71aebb15 --- /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 }} +