pinboard.html (526B)
1 <section> 2 <hr> 3 4 <h3>Links (from <a href="https://pinboard.in/u:DCE">Pinboard</a>)</h3> 5 6 {{ with resources.GetRemote "https://feeds.pinboard.in/rss/u:DCE/" | transform.Unmarshal }} 7 <ul> 8 {{ range .item | first 10 }} 9 <li> 10 <p> 11 <a href="{{ .link }}">{{ .title }}</a> 12 <span class="nowrap">({{ dateFormat "2006-01-02" .date }})</span> 13 </p> 14 15 <blockquote><p>{{ .description }}</p></blockquote> 16 </li> 17 {{ end }} 18 </ul> 19 {{ end }} 20 </section>