Consistent link/blockquote styles

This commit is contained in:
David Eisinger
2023-10-29 23:08:26 -04:00
parent ee09623ab6
commit c4adc51ffb
2 changed files with 9 additions and 5 deletions

View File

@@ -7,8 +7,12 @@
<ul>
{{ range .item | first 10 }}
<li>
<a href="{{ .link }}">{{ .title }}</a> <span class="nowrap">({{ dateFormat "2006-01-02" .date }})</span>
<p>{{ .description }}</p>
<p>
<a href="{{ .link }}">{{ .title }}</a>
<span class="nowrap">({{ dateFormat "2006-01-02" .date }})</span>
</p>
<blockquote><p>{{ .description }}</p></blockquote>
</li>
{{ end }}
</ul>