comfycamp/lib/comfycamp_web/components/layouts/root.html.heex

30 lines
989 B
Plaintext

<!DOCTYPE html>
<html lang="ru" 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=" - Comfycamp">
<%= assigns[:page_title] || "Comfycamp" %>
</.live_title>
<meta
name="description"
content={
assigns[:page_description] ||
"Личный сайт человека, который любит рассказывать про интернет."
}
/>
<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>
<link
rel="alternate"
type="text/html"
href={"http://[201:80ed:6eeb:aea4:cdc0:c836:2831:f2dd]" <> @conn.request_path}
/>
</head>
<body class="bg-white antialiased">
<%= @inner_content %>
</body>
</html>