diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-31 19:41:58 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-31 19:41:58 +0200 |
| commit | 87586f73fc5741070466d189dfab807a190753e5 (patch) | |
| tree | 33fefbcb3478c8eb35896b7c08cde27c2ca0b1c9 /static | |
| parent | cda9c115283be8e4e224f6036ba07e5eca243289 (diff) | |
add potential to generate custom headers and custom pages
Diffstat (limited to 'static')
| -rw-r--r-- | static/site.html | 20 |
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> |
