fupstatic: add some basic templates/css/js.
This commit is contained in:
parent
03cf4ea939
commit
2104261536
5 changed files with 12 additions and 0 deletions
0
web/fup/fupstatic/css/base.css
Normal file
0
web/fup/fupstatic/css/base.css
Normal file
1
web/fup/fupstatic/js/base.js
Normal file
1
web/fup/fupstatic/js/base.js
Normal file
|
@ -0,0 +1 @@
|
|||
|
4
web/fup/fupstatic/tmpl/404.html
Normal file
4
web/fup/fupstatic/tmpl/404.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
{{define "main"}}
|
||||
<h1>404 Not Found</h1>
|
||||
<p>Sorry. :(</p>
|
||||
{{end}}
|
4
web/fup/fupstatic/tmpl/base.html
Normal file
4
web/fup/fupstatic/tmpl/base.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{block "main" .}}{{end}}
|
||||
</html>
|
3
web/fup/fupstatic/tmpl/index.html
Normal file
3
web/fup/fupstatic/tmpl/index.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
{{define "main"}}
|
||||
<h1>Hello</h1>
|
||||
{{end}}
|
Loading…
Reference in a new issue