bdd181425b
Docker Compose project with automated Playwright benchmarks comparing django-liveview 2.2.0 against Phoenix LiveView 1.0 across 6 scenarios.
15 lines
469 B
Plaintext
15 lines
469 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content={get_csrf_token()}>
|
|
<title>Benchmark - Phoenix LiveView</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}></script>
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-900">
|
|
<%= @inner_content %>
|
|
</body>
|
|
</html>
|