2024-09-04 10:12:36 +02:00
|
|
|
<!DOCTYPE html>
|
2024-09-06 22:41:12 +02:00
|
|
|
<html lang="sv">
|
2024-09-04 10:12:36 +02:00
|
|
|
<head>
|
2024-10-01 16:44:34 +02:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
2024-10-03 14:38:56 +02:00
|
|
|
<title><%= assigns[:page_title] || "Anders Englöf Ytterström" %> | madr.se</title>
|
2024-10-01 16:44:34 +02:00
|
|
|
<link rel="stylesheet" href={~p"/assets/app.css"} />
|
2024-09-04 10:12:36 +02:00
|
|
|
</head>
|
|
|
|
|
<body class="bg-white">
|
|
|
|
|
<%= @inner_content %>
|
2024-10-01 16:44:34 +02:00
|
|
|
<script src={~p"/assets/app.js"}>
|
|
|
|
|
</script>
|
2024-09-04 10:12:36 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|