about summary refs log tree commit diff
path: root/webring.template
blob: d107318bf8b334e178562d9c9c4ae1f3a8ba09c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="wrapper">
  <section class="webring">
    <h2>
      Articles from blogs I read
      <small class="attribution">
        Generated by
        <a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
      </small>
    </h2>
    <section class="footer-col-wrapper">
      {{range .Articles}}
      <div class="footer-col article">
        <h4 class="title">
          <a href="{{.Link}}" target="_blank" rel="noopener">{{.Title}}</a>
        </h4>
        <p class="summary">{{.Summary}}</p>
        <small class="source">
          via <a href="{{.SourceLink}}">{{.SourceTitle}}</a>
        </small>
        <small class="date">{{.Date | date}}</small>
      </div>
      {{end}}
    </section>
  </section>
</div>