Files
davideisinger.com/themes/v2/layouts/partials/pinboard.html
David Eisinger 4ba1cdb37e Show 10 links
2023-02-24 10:22:58 -05:00

17 lines
399 B
HTML

<section>
<hr>
<h3>Links (from <a href="https://pinboard.in/u:DCE">Pinboard</a>)</h3>
{{ with getJSON "https://feeds.pinboard.in/json/u:DCE/" }}
<ul>
{{ range first 10 . }}
<li>
<a href="{{ .u }}">{{ .d }}</a> <span class="nowrap">({{ dateFormat "2006-01-02" .dt }})</span>
<p>{{ .n }}</p>
</li>
{{ end }}
</ul>
{{ end }}
</section>