www.byjp.me/layouts/shortcodes/figure.gmi
JP Hastings-Spital 732f936053 First Gemini Compatibility
This seems to mostly work! It's configured to work with Agate, and I haven't figured out the deploy mechanism yet — but it's a start!
2024-04-29 15:27:50 +01:00

12 lines
496 B
Text

{{- $src := path.Join (path.Dir .Page.RelPermalink) (.Get "src") -}}
{{- $title := "An untitled image" -}}
{{- $caption := (.Get "caption") -}}
{{- $captionChunks := split $caption "." -}}
{{- if lt (len (index $captionChunks 0)) 64 -}}
{{- $title = index $captionChunks 0 -}}
{{- $caption = delimit (after 1 $captionChunks) "." -}}
{{- end -}}
{{- $title := (.Get "title") | default $title -}}
=> {{ $src }} {{ $title }}
{{- with $caption }}{{ if ne $title . }}
> {{ . }}{{ end }}{{ end -}}