2021-11-12 13:52:41 +01:00
|
|
|
{% load static %}
|
2021-11-20 19:54:57 +01:00
|
|
|
{% load slippers %}
|
2021-11-12 13:52:41 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>htmx demo</title>
|
2021-11-12 20:54:20 +01:00
|
|
|
<link rel="icon" type="image/png" href="{% static "img/favicon.png" %}">
|
2021-11-12 13:52:41 +01:00
|
|
|
<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" %}">
|
2021-11-20 19:54:57 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/nprogress.css" %}">
|
2021-11-12 13:52:41 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/pico.min.css" %}">
|
|
|
|
{# JavaScript #}
|
2021-11-20 19:54:57 +01:00
|
|
|
<script src="{% static "js/nprogress.js" %}"></script>
|
|
|
|
<script src="{% static "js/htmx.min.js" %}"></script>
|
|
|
|
<script defer src="{% static "js/main.js" %}"></script>
|
2021-11-12 13:52:41 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-11-12 20:54:20 +01:00
|
|
|
<div class="container" hx-ws="connect:ws:{{ DOMAIN }}/ws/pages/{{ room_random }}/">
|
2021-11-12 18:59:01 +01:00
|
|
|
<header>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><strong>HTML over WebSockets with htmx</strong></li>
|
|
|
|
</ul>
|
|
|
|
<ul>
|
2021-11-12 21:25:19 +01:00
|
|
|
<li>
|
|
|
|
{# To page Talks #}
|
2021-11-20 19:54:57 +01:00
|
|
|
{% #link text="Talks" action="page" value="talks" scroll-up="true" %}{% /link %}
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
{# To page Profiles #}
|
|
|
|
{% #link text="Profiles" action="page" value="profiles" scroll-up="true" %}{% /link %}
|
2021-11-12 21:25:19 +01:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
{# To page About #}
|
2021-11-20 19:54:57 +01:00
|
|
|
{% #link text="About" action="page" value="about" scroll-up="true" %}{% /link %}
|
2021-11-12 21:25:19 +01:00
|
|
|
</li>
|
2021-11-12 18:59:01 +01:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2021-11-12 20:54:20 +01:00
|
|
|
<main id="main"></main>
|
2021-11-12 18:59:01 +01:00
|
|
|
</div>
|
2021-11-12 13:52:41 +01:00
|
|
|
</body>
|
|
|
|
</html>
|