🎉 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
+14
View File
@@ -0,0 +1,14 @@
<header class="flex justify-between py-10 font-semibold ">
<div>
<a class="hover:underline" rel="me" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
</div>
<nav>
<ul class="flex list-none">
{{ range .Site.Menus.main }}
<li class="mr-7 last:mr-0">
<a class="hover:underline" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</nav>
</header>