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

16 lines
465 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()} />
<title><%= assigns[:page_title] || "Anders Englöf Ytterström" %> | madr.se</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>