From fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb Mon Sep 17 00:00:00 2001 From: Lizzy Hunt Date: Tue, 26 Mar 2024 16:00:05 -0600 Subject: initial commit --- templates/404.html | 7 +++++++ templates/base.html | 22 ++++++++++++++++++++-- templates/base_empty.html | 3 +++ templates/guestbook.html | 3 +++ templates/home.html | 3 +++ 5 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 templates/404.html create mode 100644 templates/base_empty.html create mode 100644 templates/guestbook.html create mode 100644 templates/home.html (limited to 'templates') diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..35b43bb --- /dev/null +++ b/templates/404.html @@ -0,0 +1,7 @@ +{{ define "content" }} +

page not found

+

but hey, at least you found our witty 404 page. that's something, right?

+ +

go back home

+ +{{ end }} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index d855b51..fcd978e 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,14 +6,32 @@ hatecomputers.club + + + + + + + + +
- {{ template "content" . }} +
+

hatecomputers.club

+ +
+
+ +
+ {{ template "content" . }} +
+

hi

- + diff --git a/templates/base_empty.html b/templates/base_empty.html new file mode 100644 index 0000000..6191ab9 --- /dev/null +++ b/templates/base_empty.html @@ -0,0 +1,3 @@ +{{ define "base" }} + {{ template "content" . }} +{{ end }} \ No newline at end of file diff --git a/templates/guestbook.html b/templates/guestbook.html new file mode 100644 index 0000000..859daaf --- /dev/null +++ b/templates/guestbook.html @@ -0,0 +1,3 @@ +{{ define "content" }} +

guestbook

+{{ end }} diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..1938a03 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,3 @@ +{{ define "content" }} + +{{ end }} \ No newline at end of file -- cgit v1.2.3-70-g09d2