aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/openring/openring.html
blob: 577ec5c08ae180cc05839fe0ac6730c6b582d46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<section class="mb-10">
  <h2 class="text-2xl font-bold mb-6">Articles from blogs I follow around the net</h2>

  <section>
    {{ range .Articles }}
    <article class="mb-6">
      <a href="{{ .Link }}" target="_blank" rel="noopener" class="font-semibold mb-1 hover:bg-yellow-100">{{ .Title }}</a>
      <p class="mb-1 text-gray-600 text-sm">{{ .Summary }}</p>
      <div class="text-gray-400 text-xs">
        Via <a href="{{ .SourceLink }}" class="underline">{{ .SourceTitle }}</a> on {{ .Date | datef "January 2, 2006" }}
      </div>
    </article>
    {{ end }}
  </section>

  <p class="text-sm text-gray-600">
    <a href="https://git.sr.ht/~sircmpwn/openring" class="no-underline hover:underline">Generated by openring.</a>
  </p>
</section>