bdd181425b
Docker Compose project with automated Playwright benchmarks comparing django-liveview 2.2.0 against Phoenix LiveView 1.0 across 6 scenarios.
16 lines
497 B
HTML
16 lines
497 B
HTML
{% load static %}
|
|
{% load liveview %}
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-controller="page" data-room="{% liveview_room_uuid %}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Benchmark - Django LiveView</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="{% static 'liveview/liveview.js' %}"></script>
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-900">
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|