From e7367b8aa96e6b2eed27ba1441f61f696eaffd3d Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 23 May 2026 22:22:39 +0200 Subject: frontend: layouts: Add baseof.html and home.html These two files are the starting point for the front end. --- frontend/layouts/baseof.html | 18 ++++++++++++++++++ frontend/layouts/home.html | 3 +++ 2 files changed, 21 insertions(+) create mode 100644 frontend/layouts/baseof.html create mode 100644 frontend/layouts/home.html (limited to 'frontend') diff --git a/frontend/layouts/baseof.html b/frontend/layouts/baseof.html new file mode 100644 index 0000000..23f39e3 --- /dev/null +++ b/frontend/layouts/baseof.html @@ -0,0 +1,18 @@ + + + + {{ block "title" . }}finserv{{ end }} + + + + + +
{{ block "header" . }} +

finserv

+ {{ end }}
+
{{ block "main" . }}{{ end }}
+ + + diff --git a/frontend/layouts/home.html b/frontend/layouts/home.html new file mode 100644 index 0000000..70028a8 --- /dev/null +++ b/frontend/layouts/home.html @@ -0,0 +1,3 @@ +{{ define "main" }} +

Hello world!

+ {{ end }} -- cgit v1.3