mirror of
https://github.com/ClaperCo/Claper.git
synced 2025-12-15 19:37:53 +01:00
26 lines
871 B
Plaintext
26 lines
871 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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 rel="icon" type="image/png" href="/images/favicon.png" />
|
|
<link phx-track-static rel="stylesheet" href="/assets/app.css" />
|
|
<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="">
|
|
<div class="min-h-full">
|
|
<!-- Main column -->
|
|
<div class="flex flex-col">
|
|
<main class="flex-1">
|
|
<%= @inner_content %>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|