aboutsummaryrefslogtreecommitdiff
path: root/template/openring.tmpl
blob: 43ad6a282b4ff82f821c87e1c456193e47e35c93 (plain)
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
26
27
28
29
30
31
32
33
34
<section class="webring top-margin">
  <h4>Articles from blogs I follow around the net</h3>
  <section>
    {{range .Articles}}
    <article>
      <a href="{{.Link}}" target="_blank" rel="noopener">{{.Title}}</a>
      <p class="summary">{{.Summary}}</p>
      <small>
        via <a href="{{.SourceLink}}">{{.SourceTitle}}</a>
      </small>
      <small>{{.Date | datef "January 2, 2006"}}</small>
    </article>
    {{end}}
  </section>
  <p class="attribution">
    Generated by
    <a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
  </p>
</section>

<style>
  .webring article {
    margin-block-end: 30px;
  }
  .webring article:last-child {
    margin-block-end: 10px;
  }
  .webring article .summary {
    margin: 0;
  }
  .webring .attribution {
    font-size: small;
  }
</style>