fdddaa2a47
* set to only listen on 127.0.0.1, move static files to same location, better template handling * handle error * fix path in storj-sim * revert template handling changes * code shouldn't panic on invalid tempalte * do not rewrite once writing has started * write correct error code * use filepath for path handling * revert change * fix * fix mod tidy * use correct error code for not found, avoid infinite loop on failure
12 lines
233 B
HTML
12 lines
233 B
HTML
{{define "base"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "head" .}}
|
|
</head>
|
|
<body>
|
|
{{template "body" .}}
|
|
{{template "bootstrap" .}}
|
|
</body>
|
|
</html>
|
|
{{end}} |