Scaffold site: nav, stub sections, contact/privacy/terms, styling
deploy / deploy (push) Successful in 4s

Adds top nav links to Books/Authors/Submissions stub pages, and
Contact/Privacy/Terms pages modeled on reground-site's structure. Contact
form posts to the already-provisioned eec-twosquirrelspress backend.
Styling implements the press's brand palette and font choices.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-13 16:15:26 -04:00
parent 33467e6c00
commit da71153a73
14 changed files with 485 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}