portfolio/lib/portfolio_web/components/layouts/root.html.heex

19 lines
681 B
Plaintext
Raw Permalink Normal View History

2024-05-18 17:53:56 +00:00
<!DOCTYPE html>
<html lang="en" class="[scrollbar-gutter:stable]">
<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=" · Joshua Potter">
<%= assigns[:page_title] || "Portfolio" %>
</.live_title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<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-zinc-800 text-white">
<%= @inner_content %>
</body>
</html>