hugo-theme-stack/layouts/shortcodes/quote.html
Jimmy Cai d090e1bb94 Format code and move quote.scss to article.scss
This style is only used on the article page, so it makes more sense to have it there.
2022-06-08 15:56:13 +00:00

15 lines
488 B
HTML

<blockquote>
<p>{{ .Inner | markdownify }}</p>
{{- if or (.Get "author") (.Get "source") -}}
<span class="cite"><span></span>
{{- if .Get "author" -}}
<span>
{{- .Get "author" -}}{{- if .Get "source" -}}, {{ end -}}
</span>
{{- end -}}
{{- with .Get "url" -}}<a href="{{ . }}">{{- end -}}
<cite>{{ .Get "source" }}</cite>
{{- if .Get "url" -}}</a>{{- end -}}
</span>
{{- end -}}
</blockquote>