blob: 2ed2a86234e3cee75ddf974185d24a36f3108f19 (
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">
<h2 class="text-2xl font-bold mb-6">Articles from blogs I follow around the net</h2>
<section class="grid md:grid-cols-2 gap-10">
{{ range .Articles }}
<article class="flex flex-col gap-1">
<a href="{{ .Link }}" target="_blank" rel="noopener" class="font-medium rounded underline">{{ .Title }}</a>
<p class="text-sm text-gray-600">{{ .Summary }}</p>
<div class="text-gray-500 font-medium 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-500">
<a href="https://git.sr.ht/~sircmpwn/openring" class="no-underline hover:underline">Generated with openring.</a>
</p>
</section>
|