Remove heading in figcaption when necessary

alternate-navbar
Maik de Kruif 3 years ago
parent fba2bd8805
commit a6d96dbdc2
Signed by: maik
GPG Key ID: 44A55AD1F0673FA6
  1. 6
      themes/maik-blog/assets/scss/_main.scss
  2. 14
      themes/maik-blog/layouts/shortcodes/figure.html

@ -182,8 +182,10 @@ figure {
} }
figcaption { figcaption {
font-size: 14px; font-size: 1.125rem;
margin-top: 5px; line-height: 1.3;
margin: 1.33em 0;
font-weight: bold;
opacity: 0.8; opacity: 0.8;
&.left { &.left {

@ -14,17 +14,23 @@
{{- if .Get "link" }}</a>{{ end -}} {{- if .Get "link" }}</a>{{ end -}}
{{- if or (or (.Get "title") (.Get "caption")) (.Get "attr") -}} {{- if or (or (.Get "title") (.Get "caption")) (.Get "attr") -}}
<figcaption> <figcaption>
{{ with (.Get "title") -}} {{- if or (.Get "caption") (.Get "attr") -}}
{{- with (.Get "title") -}}
<h4>{{ . }}</h4> <h4>{{ . }}</h4>
{{- end -}} {{- end -}}
{{- if or (.Get "caption") (.Get "attr") -}}<p> <p>
{{- .Get "caption" | markdownify -}} {{- .Get "caption" | markdownify -}}
{{- with .Get "attrlink" }} {{- with .Get "attrlink" }}
<a href="{{ . }}"> <a href="{{ . }}">
{{- end -}} {{- end -}}
{{- .Get "attr" | markdownify -}} {{- .Get "attr" | markdownify -}}
{{- if .Get "attrlink" }}</a>{{ end }}</p> {{- if .Get "attrlink" }}</a>{{ end }}
{{- end }} </p>
{{- else -}}
{{- with (.Get "title") -}}
{{ . }}
{{- end -}}
{{- end -}}
</figcaption> </figcaption>
{{- end }} {{- end }}
</figure> </figure>
Loading…
Cancel
Save