🎉 Initial commit

This commit is contained in:
James Panther
2021-08-11 15:28:33 +10:00
commit a6a3ee761e
54 changed files with 6713 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{{ define "main" }}
{{ partial "section-heading.html" . }}
<section class="flex flex-wrap -mx-2 overflow-hidden">
{{ range .Site.Taxonomies.topics }}
<article
class="w-full px-2 my-3 overflow-hidden sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w-1/5"
>
<h2>
<a
class="text-xl font-medium hover:underline"
href="{{ .Page.Permalink }}"
>{{ .Page.Title }}</a
>
<span class="text-base text-gray-400">
<span class="px-1">&middot;</span>
{{ .Count }}
</span>
</h2>
</article>
{{ end }}
</section>
{{ end }}