davideisinger.com

My personal website
Log | Files | Refs | README

marky.html (625B)


      1 <section>
      2   <hr>
      3 
      4   <h3>Links (from <a href="https://bookmarks.davideisinger.com/u:dce">Marky</a>)</h3>
      5 
      6   {{ with resources.GetRemote "https://bookmarks.davideisinger.com/u:dce.json" | transform.Unmarshal }}
      7     <ul>
      8       {{ range . | first 10 }}
      9         <li>
     10           <p>
     11             <a href="{{ .url}}">{{ .title }}</a>
     12             {{ if .referrer }} (<a href="{{ .referrer }}">via</a>){{ end }}
     13             <span class="nowrap">({{ dateFormat "2006-01-02" .updated_at }})</span>
     14           </p>
     15 
     16           <blockquote><p>{{ .description }}</p></blockquote>
     17         </li>
     18       {{ end }}
     19     </ul>
     20   {{ end }}
     21 </section>