chore(chat): interpolate values using new curly braces syntax

This commit is contained in:
2024-12-24 00:05:51 +00:00
parent cd45664a63
commit ada10afa96
6 changed files with 41 additions and 39 deletions

View File

@@ -1,4 +1,4 @@
<main class="flex w-full h-screen text-gray-700">
<.flash_group flash={@flash} />
<%= @inner_content %>
{@inner_content}
</main>

View File

@@ -5,13 +5,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="csrf-token" content={get_csrf_token()} />
<.live_title suffix=" · Slax">
<%= assigns[:page_title] || "Slax" %>
{assigns[:page_title] || "Slax"}
</.live_title>
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
</script>
</head>
<body class="bg-white">
<%= @inner_content %>
{@inner_content}
</body>
</html>