summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-03-31 19:41:58 +0200
committerJules Laplace <julescarbon@gmail.com>2021-03-31 19:41:58 +0200
commit87586f73fc5741070466d189dfab807a190753e5 (patch)
tree33fefbcb3478c8eb35896b7c08cde27c2ca0b1c9 /static
parentcda9c115283be8e4e224f6036ba07e5eca243289 (diff)
add potential to generate custom headers and custom pages
Diffstat (limited to 'static')
-rw-r--r--static/site.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/static/site.html b/static/site.html
index 1412da5..9a41081 100644
--- a/static/site.html
+++ b/static/site.html
@@ -1,18 +1,18 @@
<!DOCTYPE html>
<html>
<head>
- <meta charset="UTF-8">
- <title>PAGE_TITLE</title>
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="stylesheet" type="text/css" href="SITE_PATH/site.css" />
- <style>
- html { background: #000; }
- </style>
+<meta charset="UTF-8">
+<title>PAGE_TITLE</title>
+<meta name="viewport" content="width=device-width,initial-scale=1.0">
+CUSTOM_HEADER <link rel="stylesheet" type="text/css" href="SITE_PATH/site.css" />
+<style>
+html { background: #000; }
+</style>
</head>
<body>
<script>
- var s = document.createElement('script');
- s.setAttribute('src', 'BUNDLE_PATH?' + Math.round(Date.now() / 30000))
- document.body.appendChild(s)
+var s = document.createElement('script');
+s.setAttribute('src', 'BUNDLE_PATH?' + Math.round(Date.now() / 30000))
+document.body.appendChild(s)
</script>
</html>