Files
Claper/lib/claper_web/templates/layout/user.html.heex

27 lines
1004 B
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
2023-04-20 22:10:33 +02:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<%= csrf_meta_tag() %>
2024-04-06 11:48:47 +02:00
<.live_title suffix=" · Claper" )><%= assigns[:page_title] || "Claper" %></.live_title>
<link phx-track-static rel="stylesheet" href="/assets/app.css" />
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link phx-track-static rel="stylesheet" href="/assets/custom.css" />
<script defer phx-track-static type="text/javascript" src="/assets/app.js">
2023-04-20 22:10:33 +02:00
</script>
</head>
<body class="bg-gray-100">
<div class="min-h-full">
<!-- Main column -->
<div class="flex flex-col" x-data="{profileMobileDropdown: false}">
<%= render("_profile_dropdown.html", user: @current_user, conn: @conn) %>
<main class="flex-1">
<%= @inner_content %>
</main>
</div>
</div>
</body>
</html>