svg.pablopie.xyz

A simple SVG markup editor for the web

NameSizeMode
..
index.html 1036B -rw-r--r--
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE HTML>
<html>
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="description" 
        content="Edit the source code and preview the results">

	<link rel="stylesheet" href="/css/styles.css">
  <link rel="icon" 
        type="image/svg+xml" 
        sizes="16x16 24x24 32x32 48x48 64x64 128x128 192x192 256x256 512x512" 
        href="/assets/favicon.svg">
  <link rel="manifest" href="manifest.json">
  <script src="js/script.min.js"></script>
</head>
<body>
	<script>
    Elm.Main.init();

    function load() {
      navigator.serviceWorker
        .register("./service-worker.js")
        .then(console.log)
        .catch(console.error);
    }

    if ("serviceWorker" in navigator) window.addEventListener("load", load);
  </script>
  <noscript>
    <header id="noscript">
      <span>
        This site (unfortunatelly) requires JS 
        <br>
        T_T
      </span>
    </header>
  </noscript>
</body>
</html>