2023-04-14 10:07:57 +02:00
|
|
|
<!DOCTYPE html>
|
2023-04-19 13:47:14 +02:00
|
|
|
<html lang="en">
|
2023-04-14 10:07:57 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
|
|
|
<.live_title suffix=" · Phoenix Framework">
|
|
|
|
<%= assigns[:page_title] || "ChickenEgg" %>
|
|
|
|
</.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 antialiased">
|
|
|
|
<%= @inner_content %>
|
|
|
|
</body>
|
|
|
|
</html>
|