aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2020-02-23 18:50:38 +0000
committerr <r@freesoftwareextremist.com>2020-02-23 18:55:47 +0000
commitc2c5b641ca8c170811a619bf1860503f4dfbca20 (patch)
tree95251ed59886b901a9bbb3b6d2a006c91e4f3b5b
parente9f5e0cab55a8a92575139788ffb003ed5d4f576 (diff)
downloadbloat-c2c5b641ca8c170811a619bf1860503f4dfbca20.tar.gz
bloat-c2c5b641ca8c170811a619bf1860503f4dfbca20.zip
Convert root page to html4
-rw-r--r--BUGS3
-rw-r--r--templates/root.tmpl15
2 files changed, 7 insertions, 11 deletions
diff --git a/BUGS b/BUGS
deleted file mode 100644
index 4972d14..0000000
--- a/BUGS
+++ /dev/null
@@ -1,3 +0,0 @@
-Here's a list of known bugs in bloat:
-
-- <frameset> and <frame> tags are not supported in HTML5
diff --git a/templates/root.tmpl b/templates/root.tmpl
index cd33139..2a9670d 100644
--- a/templates/root.tmpl
+++ b/templates/root.tmpl
@@ -1,17 +1,16 @@
{{with .Data}}
-<!DOCTYPE html>
-<html lang="en">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<html>
<head>
- <meta charset='utf-8'>
- <meta content='width=device-width, initial-scale=1' name='viewport'>
+ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>{{.Title}}</title>
</head>
-<frameset cols="30%,*">
+<frameset cols="420px,*">
<frameset rows="316px,*">
- <frame name="nav" class="nav-frame" src="/nav" />
- <frame name="notification" class="notification-frame" src="/notifications" />
+ <frame name="nav" src="/nav">
+ <frame name="notification" src="/notifications">
</frameset>
- <frame name="main" class="main-frame" src="/timeline/home" />
+ <frame name="main" src="/timeline/home">
</frameset>
</html>
{{end}}