summaryrefslogtreecommitdiffstats
path: root/mustache-templates/reproducible/basic_page.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'mustache-templates/reproducible/basic_page.mustache')
-rw-r--r--mustache-templates/reproducible/basic_page.mustache26
1 files changed, 26 insertions, 0 deletions
diff --git a/mustache-templates/reproducible/basic_page.mustache b/mustache-templates/reproducible/basic_page.mustache
new file mode 100644
index 00000000..f5fe0383
--- /dev/null
+++ b/mustache-templates/reproducible/basic_page.mustache
@@ -0,0 +1,26 @@
+<!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?v={{style_dot_css_sha1sum}}" type="text/css" rel="stylesheet" />
+ {{#include_pkgset_js}}
+ <script type="text/JavaScript" src="/static/pkgset.js"></script>
+ {{/include_pkgset_js}}
+ <title>{{page_title}}</title>
+ </head>
+ <body class="wrapper">
+ {{#navigation_html}}
+ <header class="head">
+ {{{navigation_html}}}
+ </header>
+ {{/navigation_html}}
+ {{#navigation_html}}<div class="mainbody">{{/navigation_html}}
+ {{#main_header}}
+ <h2>{{main_header}}</h2>
+ {{/main_header}}
+ {{{main_html}}}
+ {{#navigation_html}}</div>{{/navigation_html}}
+ </body>
+</html>