Initial checkin of templ skeleton

HTML based on Jason Knight HTML template code
This commit is contained in:
2024-08-03 08:51:30 +02:00
parent f50222f6d5
commit f15d6b2163
25 changed files with 1590 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
TARGET = ./site
.PHONY: clean distclean test components $(TARGET)
.NOTPARALLEL:
$(TARGET): components
$(info ===> BUILD site)
@go build ./cmd/site
components:
$(info ===> BUILD templates)
cd web/components && templ generate
clean:
$(info ===> CLEAN)
@go clean
@rm -f $(TARGET)