diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-11-11 15:36:14 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-11-11 15:36:14 +0100 |
| commit | f095df912b8b495046bd1391d96527c4a5604a19 (patch) | |
| tree | 07df206ef2d1088e011760c6e31a782865a189c8 /animism-align/static | |
| parent | 6780304f4f8d5494f4da9c8ee2d793b0e3417346 (diff) | |
first rev of static site export
Diffstat (limited to 'animism-align/static')
| -rw-r--r-- | animism-align/static/site.css | 8 | ||||
| -rw-r--r-- | animism-align/static/site.html | 21 |
2 files changed, 29 insertions, 0 deletions
diff --git a/animism-align/static/site.css b/animism-align/static/site.css new file mode 100644 index 0000000..1115616 --- /dev/null +++ b/animism-align/static/site.css @@ -0,0 +1,8 @@ + +* { box-sizing: border-box; } +html, body { + margin: 0; + padding: 0; + width: 100%; + height: 100%; +} diff --git a/animism-align/static/site.html b/animism-align/static/site.html new file mode 100644 index 0000000..a18500b --- /dev/null +++ b/animism-align/static/site.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>PAGE_TITLE</title> + <meta name="viewport" content="width=device-width,initial-scale=1.0" /> + <meta name="description" content="PAGE_DESCRIPTION" /> + <link rel="stylesheet" type="text/css" href="SITE_PATH/site.css" /> + <style> + html { background: #000; } + .plain_content { display: none; } + </style> +</head> +<body> +<div class="plain_content">{PLAIN_CONTENT}</div> +<script> + var s = document.createElement('script'); + s.setAttribute('src', 'BUNDLE_PATH?' + (Date.now() / 3600)) + document.body.appendChild(s) +</script> +</html> |
