Files
davideisinger.com/themes/v2/layouts/partials/pinboard.html
David Eisinger 8d67dc4531 Use Pinboard RSS
JSON feed is busted.
2023-08-07 13:29:31 -04:00

17 lines
457 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>
<a href="{{ .link }}">{{ .title }}</a> <span class="nowrap">({{ dateFormat "2006-01-02" .date }})</span>
<p>{{ .description }}</p>
</li>
{{ end }}
</ul>
{{ end }}
</section>