blob: a385324be4c219c4e5f3b163e8b71cf005e29f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<section class="mb-10">
<h4 class="text-2xl font-bold mb-6">Articles from blogs I follow around the net</h4>
<section>
{{range .Articles}}
<article class="mb-6">
<a href="{{.Link}}" target="_blank" rel="noopener" class="font-semibold mb-1 hover:bg-yellow-200">{{.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>
|