Files
davideisinger.com/themes/v2/layouts/partials/pinboard.html
2023-10-30 00:03:56 -04:00

21 lines
526 B
HTML

<section>
<hr>
<h3>Links (from <a href="https://pinboard.in/u:DCE">Pinboard</a>)</h3>
{{ with resources.GetRemote "https://feeds.pinboard.in/rss/u:DCE/" | transform.Unmarshal }}
<ul>
{{ range .item | first 10 }}
<li>
<p>
<a href="{{ .link }}">{{ .title }}</a>
<span class="nowrap">({{ dateFormat "2006-01-02" .date }})</span>
</p>
<blockquote><p>{{ .description }}</p></blockquote>
</li>
{{ end }}
</ul>
{{ end }}
</section>