mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-02-24 12:09:59 +01:00
27 lines
1002 B
Plaintext
27 lines
1002 B
Plaintext
<!DOCTYPE html>
|
|
<html lang={@current_user.locale}>
|
|
<head>
|
|
<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()}
|
|
<.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">
|
|
</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>
|