mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 12:56:57 +01:00
15 lines
391 B
HTML
15 lines
391 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 "link" }}<a href={{ . }}>{{ end }}
|
|
{{ with .Get "cite" }}<cite>{{ . }}</cite>{{ end }}
|
|
</a>
|
|
{{ with .Get "post" }}{{ . }}{{ end }}
|
|
</footer>
|
|
{{ end }}
|
|
<blockquote>
|
|
</div>
|