diff options
author | stuebinm | 2021-03-07 22:04:42 +0100 |
---|---|---|
committer | stuebinm | 2021-03-07 22:04:42 +0100 |
commit | d8925def7fa6a359e11e612527d12a0280f44d84 (patch) | |
tree | 464d34c36f9789bf1bfcf6cde92529d7056177a0 /picarones-elm/cover.html | |
parent | f5c19d2061e03ef28c45efd839bb211e446b25f6 (diff) |
Add simple cover which lets users create new links
Diffstat (limited to '')
-rw-r--r-- | picarones-elm/cover.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/picarones-elm/cover.html b/picarones-elm/cover.html new file mode 100644 index 0000000..d92eba9 --- /dev/null +++ b/picarones-elm/cover.html @@ -0,0 +1,19 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta charset="UTF-8"> + <title>Main</title> + <script src="Cover.js"></script> + <link rel="stylesheet" type="text/css" href="document.css" /> +</head> + +<body> + <div id="elm"></div> + <script> + var app = Elm.Cover.init({ + node: document.getElementById('elm'), + flags: "https://picarones.stuebinm.eu" + }); + </script> +</body> +</html> |