From 210426153688101fc41e3ab8c772b47c0c52bcb0 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sat, 20 Mar 2021 19:51:57 +0000 Subject: [PATCH] fupstatic: add some basic templates/css/js. --- web/fup/fupstatic/css/base.css | 0 web/fup/fupstatic/js/base.js | 1 + web/fup/fupstatic/tmpl/404.html | 4 ++++ web/fup/fupstatic/tmpl/base.html | 4 ++++ web/fup/fupstatic/tmpl/index.html | 3 +++ 5 files changed, 12 insertions(+) create mode 100644 web/fup/fupstatic/css/base.css create mode 100644 web/fup/fupstatic/js/base.js create mode 100644 web/fup/fupstatic/tmpl/404.html create mode 100644 web/fup/fupstatic/tmpl/base.html create mode 100644 web/fup/fupstatic/tmpl/index.html diff --git a/web/fup/fupstatic/css/base.css b/web/fup/fupstatic/css/base.css new file mode 100644 index 0000000000..e69de29bb2 diff --git a/web/fup/fupstatic/js/base.js b/web/fup/fupstatic/js/base.js new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/web/fup/fupstatic/js/base.js @@ -0,0 +1 @@ + diff --git a/web/fup/fupstatic/tmpl/404.html b/web/fup/fupstatic/tmpl/404.html new file mode 100644 index 0000000000..a88707b38b --- /dev/null +++ b/web/fup/fupstatic/tmpl/404.html @@ -0,0 +1,4 @@ +{{define "main"}} +

404 Not Found

+

Sorry. :(

+{{end}} diff --git a/web/fup/fupstatic/tmpl/base.html b/web/fup/fupstatic/tmpl/base.html new file mode 100644 index 0000000000..a752357a78 --- /dev/null +++ b/web/fup/fupstatic/tmpl/base.html @@ -0,0 +1,4 @@ + + + {{block "main" .}}{{end}} + diff --git a/web/fup/fupstatic/tmpl/index.html b/web/fup/fupstatic/tmpl/index.html new file mode 100644 index 0000000000..0066166d58 --- /dev/null +++ b/web/fup/fupstatic/tmpl/index.html @@ -0,0 +1,3 @@ +{{define "main"}} +

Hello

+{{end}}