2024-05-27 12:53:37 +05:00
|
|
|
<!DOCTYPE html>
|
2024-06-15 22:04:21 +05:00
|
|
|
<html lang="ru" class="[scrollbar-gutter:stable]">
|
2024-05-27 12:53:37 +05:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
2024-06-15 22:04:21 +05:00
|
|
|
<.live_title suffix=" - Comfycamp">
|
2024-05-27 12:53:37 +05:00
|
|
|
<%= assigns[:page_title] || "Comfycamp" %>
|
|
|
|
</.live_title>
|
2024-06-15 22:04:21 +05:00
|
|
|
<meta
|
|
|
|
name="description"
|
|
|
|
content={
|
|
|
|
assigns[:page_description] ||
|
|
|
|
"Личный сайт человека, который любит рассказывать про интернет."
|
|
|
|
}
|
|
|
|
/>
|
2024-05-27 12:53:37 +05:00
|
|
|
<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>
|
2024-06-15 22:04:21 +05:00
|
|
|
<link
|
|
|
|
rel="alternate"
|
|
|
|
type="text/html"
|
|
|
|
href={"http://[201:80ed:6eeb:aea4:cdc0:c836:2831:f2dd]" <> @conn.request_path}
|
|
|
|
/>
|
2024-05-27 12:53:37 +05:00
|
|
|
</head>
|
|
|
|
<body class="bg-white antialiased">
|
|
|
|
<%= @inner_content %>
|
|
|
|
</body>
|
|
|
|
</html>
|