sloane.sh/priv/site/layouts/root.html.eex

16 lines
506 B
Elixir
Raw Normal View History

2024-02-17 08:30:17 -05:00
<!DOCTYPE html>
<html class="m-4 flex flex-row justify-center">
2024-02-17 08:30:17 -05:00
<head>
2024-02-17 08:47:27 -05:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>sloane.sh | <%= attrs[:title] %></title>
2024-02-21 09:17:58 -05:00
<link rel="stylesheet" href="/assets/app.css" />
2024-02-17 08:30:17 -05:00
</head>
2024-02-23 22:41:26 -05:00
<body class="w-full max-w-3xl bg-white text-black dark:bg-neutral-800 dark:text-neutral-100">
<%= header(ctx, attrs) %>
<main class="font-serif mt-6">
<%= inner_content %>
</main>
2024-02-17 08:30:17 -05:00
</body>
</html>