aboutsummaryrefslogtreecommitdiffstats
path: root/demo/templates/base.html.j2
blob: 06ab5fc04f0f220415d90d5b7d141dc5d8762aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="preload" href="/static/InclusiveSans-Regular.ttf" as="font" type="font/woff2" crossorigin="anonymous">
    <link rel="stylesheet" href="/static/styles.css"></link>
    {% block head_meta %}
    <title>Demo chat app</title>
    <meta name="description" content="Demo chat app">
    {% endblock %}
</head>
<body>
  <h1><a href="/">Demo chat app</a></h1>
  {% block content %}{% endblock %}

  <form id="refresh" action="/" hidden method="get" htmp replace="messages">
      <input id="refresh_hidden" type="hidden" name="nonce" value="">
  </form>

  <script src="/static/htmp.js"></script>
  <script>
  setInterval(() => {
    console.log('refreshing');
    document.getElementById('refresh_hidden').value = Date.now();
    document.getElementById('refresh').submit();
  }, 3000);
  </script>
</body>
</html>