diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-06 11:47:53 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-06 11:47:53 -0400 |
commit | 13a08c508005b9c3b280c05459e943a268b5ccc5 (patch) | |
tree | 246029b796ea10d7da11b7032970501bfa605589 /captain/templates | |
parent | b9cac9bb26fe388abff34fa4fc562b0804cabb2e (diff) | |
download | levitating-13a08c508005b9c3b280c05459e943a268b5ccc5.tar.gz levitating-13a08c508005b9c3b280c05459e943a268b5ccc5.zip |
Fixed static file handler to allow subdirectories properly. Fixed directory file listing under Linux. Release listing now works through CGI.
Diffstat (limited to 'captain/templates')
-rw-r--r-- | captain/templates/index.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/captain/templates/index.html b/captain/templates/index.html index 1bbf8f4..6a41d0d 100644 --- a/captain/templates/index.html +++ b/captain/templates/index.html @@ -1,5 +1,7 @@ +<!DOCTYPE html> <html> <head> + <meta charset="utf-8"/> <title>{{ title }} - I'm Levitating!</title> <link rel="stylsheet" href="/static/style.css" /> </head> @@ -22,7 +24,7 @@ <div class="content"> - {{ content }} + {{ contents }} </div> |