25/lib/mse25_web/components/layouts/root.html.heex

18 lines
489 B
Text
Raw Normal View History

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="csrf-token" content={get_csrf_token()} />
<.live_title suffix=" · Phoenix Framework">
<%= assigns[:page_title] || "Mse25" %>
</.live_title>
<link rel="stylesheet" href={~p"/assets/app.css"} />
</head>
<body class="bg-white">
<%= @inner_content %>
<script src={~p"/assets/app.js"}>
</script>
</body>
</html>