From 8070becd846a5b59b0ee32015d02eb00a2652f4e Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 20 Jan 2022 16:03:08 -0800 Subject: bowl: :star: --- templates/pages/index.tmpl | 21 +++++++++++++++++++++ templates/pages/notice.tmpl | 11 +++++++++++ templates/partials/head0.tmpl | 18 ++++++++++++++++++ templates/partials/head1.tmpl | 4 ++++ 4 files changed, 54 insertions(+) create mode 100644 templates/pages/index.tmpl create mode 100644 templates/pages/notice.tmpl create mode 100644 templates/partials/head0.tmpl create mode 100644 templates/partials/head1.tmpl (limited to 'templates') diff --git a/templates/pages/index.tmpl b/templates/pages/index.tmpl new file mode 100644 index 0000000..75992c5 --- /dev/null +++ b/templates/pages/index.tmpl @@ -0,0 +1,21 @@ +{{template "head0"}} + +
+ + + poo + pee +
+ + + +
+ + + +
+ + +
+ +{{template "head1"}} diff --git a/templates/pages/notice.tmpl b/templates/pages/notice.tmpl new file mode 100644 index 0000000..3cd9eb4 --- /dev/null +++ b/templates/pages/notice.tmpl @@ -0,0 +1,11 @@ +{{template "head0"}} + +

{{.Notice}}

+ +{{if .Data}} +

data

+ + {{.Data}} +{{end}} + +{{template "head1"}} diff --git a/templates/partials/head0.tmpl b/templates/partials/head0.tmpl new file mode 100644 index 0000000..83450dc --- /dev/null +++ b/templates/partials/head0.tmpl @@ -0,0 +1,18 @@ +{{define "head0"}} + + + + + + + + + + + + bowl + + + +

bowl

+{{end}} diff --git a/templates/partials/head1.tmpl b/templates/partials/head1.tmpl new file mode 100644 index 0000000..9149e31 --- /dev/null +++ b/templates/partials/head1.tmpl @@ -0,0 +1,4 @@ +{{ define "head1" }} + + +{{ end }} -- cgit v1.2.3