1 | <!DOCTYPE html> |
2 | <html lang="en"> |
3 | <head> |
4 | <title>kevinschoon-dot-com</title> |
5 | <meta charset="UTF-8"> |
6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 | <link rel="stylesheet" href="/main.css"/> |
8 | </head> |
9 | <body> |
10 | <section> |
11 | <div class="wrapper"> |
12 | <header class="page-header"> |
13 | {% if not link == "/" %}<a href="/">Home</a>{% endif %} |
14 | </header> |
15 | <main class="page-body"> |
16 | {{ content }} |
17 | </main> |
18 | <footer class="page-footer"></footer> |
19 | </div> |
20 | </section> |
21 | </body> |
22 | {% if devmode %} |
23 | <script> |
24 | const socket = new WebSocket("ws://localhost:8080/ws") |
25 | socket.addEventListener("open", (event) => { |
26 | console.log("connected to server", event); |
27 | }); |
28 | socket.addEventListener("message", (event) => { |
29 | console.log("reloading page", event); |
30 | window.location.reload(); |
31 | }) |
32 | </script> |
33 | {% endif %} |
34 | </html> |