hugo-theme-stack/layouts/shortcodes/poem.html
2023-12-31 02:17:44 +08:00

19 lines
592 B
HTML

<blockquote>
<p style="text-align:center">{{ .Inner }}</p>
{{- if or (.Get "author") (.Get "source") -}}
<footer style="text-align:right">
——
{{- if .Get "author" -}}
<span>
<strong>
{{- .Get "author" -}}
</strong>
</span>
{{- end -}}
{{- with .Get "url" -}}<a href="{{ . }}">{{- end -}}
<cite>{{ .Get "source" }}</cite>
{{- if .Get "url" -}}</a>{{- end -}}
</span>
</footer>
{{- end -}}
</blockquote>