Files
andros bdd181425b Initial commit: Django LiveView vs Phoenix LiveView benchmark
Docker Compose project with automated Playwright benchmarks comparing
django-liveview 2.2.0 against Phoenix LiveView 1.0 across 6 scenarios.
2026-05-15 15:46:50 +02:00

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>