summaryrefslogtreecommitdiffstats
path: root/bin/templates
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2016-07-11 17:32:58 -0400
committerHolger Levsen <holger@layer-acht.org>2016-07-24 11:46:02 -0400
commit1f6e833815c011e56ab77a258b4eee94a8acaf43 (patch)
tree8df6e0678eb99b6110ff9506e2f7c0115cd5f2cc /bin/templates
parent0b4d9e94923280e5e836105a8b82e9b01f1714d0 (diff)
downloadjenkins.debian.net-1f6e833815c011e56ab77a258b4eee94a8acaf43.tar.xz
reproducible debian: move html from code into basic_page template
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/templates')
-rw-r--r--bin/templates/basic_page.mustache20
1 files changed, 16 insertions, 4 deletions
diff --git a/bin/templates/basic_page.mustache b/bin/templates/basic_page.mustache
index 99fee20f..1239a4a0 100644
--- a/bin/templates/basic_page.mustache
+++ b/bin/templates/basic_page.mustache
@@ -1,4 +1,16 @@
-{{{main_navigation_html}}}
-<div class="mainbody">
-{{{main_html}}}
-</div>
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="viewport" content="width=device-width" />
+ {{meta_refresh}}
+ <link href="/static/style.css" type="text/css" rel="stylesheet" />
+ <title>{{page_title}}</title>
+ </head>
+ <body class="wrapper">
+ {{{main_navigation_html}}}
+ <div class="mainbody">
+ {{{main_html}}}
+ </div>
+ </body>
+</html>