2021-11-12 13:52:41 +01:00
|
|
|
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>htmx demo</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">
|
|
|
|
<meta name="author" content="Andros Fenollosa">
|
|
|
|
<meta name="generator" content="Django">
|
|
|
|
<meta name="description" content="Demo WebSockets over HTML with htmx">
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
{# Styles #}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/normalize.css" %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/pico.min.css" %}">
|
|
|
|
{# JavaScript #}
|
|
|
|
<script defer src="{% static "js/htmx.min.js" %}"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-11-12 18:59:01 +01:00
|
|
|
<div class="container">
|
|
|
|
<header>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><strong>HTML over WebSockets with htmx</strong></li>
|
|
|
|
</ul>
|
|
|
|
<ul>
|
|
|
|
<li><a href="#">Events</a></li>
|
|
|
|
<li><a href="#">Profiles</a></li>
|
2021-11-12 18:59:25 +01:00
|
|
|
<li><a href="#">About</a></li>
|
2021-11-12 18:59:01 +01:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<main hx-ws="connect:ws:{{ DOMAIN }}/ws/pages/{{ room_random }}/" id="page"></main>
|
|
|
|
</div>
|
2021-11-12 13:52:41 +01:00
|
|
|
</body>
|
|
|
|
</html>
|