blob: a2380179b0b859e4d7898433b393626f832ac606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<section>
<h2 class="text-2xl font-bold mb-6">Read more from this site</h2>
<nav itemscope itemtype="https://schema.org/SiteNavigationElement" class="mb-12">
<meta itemprop="name" content="Article list">
<ul>
{{ $randomPosts := shuffle (where .Site.RegularPages "Type" "posts") | first 5 }}
{{ range $randomPosts }}
<li class="mb-6">
<time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Mon Jan 2, 2006" }}</time>
<a href="/{{ .Params.url }}" itemprop="url" class="hover:bg-yellow-100 font-medium">{{ .Title }}</a>
<p class="text-gray-600 text-sm">{{ .Summary }}</p>
</li>
{{ end }}
</ul>
</nav>
</section>
|