hugo/docs/layouts/partials/quotes.html
2016-04-07 22:50:38 +02:00

13 lines
283 B
HTML

{{ range . }}
<div class="item">
<blockquote>
<p>
{{ .quote | safeHTML }}
</p>
&mdash; {{ .name }} ({{ .twitter_handle }}) <a href="{{ .link }}">
{{ dateFormat "January 2, 2006" .date }}
</a>
</blockquote>
</div>
{{ end }}