mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 04:46:58 +01:00
14 lines
338 B
HTML
14 lines
338 B
HTML
|
<div class="epigraph">
|
||
|
<blockquote>
|
||
|
{{ $t := .Get "type" }}
|
||
|
{{ if eq $t "compact" }}{{ .Inner }}{{ else }}<p>{{ .Inner }}</p>{{ end }}
|
||
|
{{ if .IsNamedParams }}
|
||
|
<footer>
|
||
|
{{ with .Get "pre" }}{{ . }}{{ end }}
|
||
|
{{ with .Get "cite" }}<cite>{{ . }}</cite>{{ end }}
|
||
|
{{ with .Get "post" }}{{ . }}{{ end }}
|
||
|
</footer>
|
||
|
{{ end }}
|
||
|
<blockquote>
|
||
|
</div>
|