feature: Set up Tailwind and automate dev process to watch all files for changes and rebuild as needed

This commit is contained in:
Keith Solomon
2025-04-20 17:01:14 -05:00
parent 3fe75e9ad5
commit 9957a5c116
24 changed files with 3319 additions and 76 deletions

View File

@@ -1,9 +1,11 @@
{{ define "header" }}
<header>
<header id="site_head">
<h1 class="text-white text-40px hover:text-primary-200"><a href="/">Go SSG</a></h1>
<nav>
<ul>
<ul class="list-none">
{{ range .Nav }}
<li><a href="{{ .URL }}">{{ .Title }}</a></li>
<li class="list-none"><a class="text-white hover:text-primary-200" href="{{ .URL }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</nav>