From a1a067e6de1679d0a3a1503e93bb672432990cd4 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 2 Dec 2019 15:31:00 +0100 Subject: Add HTTP server boilerplate --- public/foot.html | 4 ++++ public/head.html | 9 +++++++++ public/index.html | 5 +++++ 3 files changed, 18 insertions(+) create mode 100644 public/foot.html create mode 100644 public/head.html create mode 100644 public/index.html (limited to 'public') diff --git a/public/foot.html b/public/foot.html new file mode 100644 index 0000000..d92a512 --- /dev/null +++ b/public/foot.html @@ -0,0 +1,4 @@ +{{define "foot"}} + + +{{end}} diff --git a/public/head.html b/public/head.html new file mode 100644 index 0000000..fb8e12a --- /dev/null +++ b/public/head.html @@ -0,0 +1,9 @@ +{{define "head"}} + + + + + koushin + + +{{end}} diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..9dbc3fe --- /dev/null +++ b/public/index.html @@ -0,0 +1,5 @@ +{{template "head"}} + +

koushin

+ +{{template "foot"}} -- cgit v1.2.3