feat: init
This commit is contained in:
commit
b58058e19b
59 changed files with 3314 additions and 0 deletions
22
lib/putzplan_web/components/layouts/root.html.heex
Normal file
22
lib/putzplan_web/components/layouts/root.html.heex
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" class="[scrollbar-gutter:stable]">
|
||||
<head>
|
||||
<%= if Application.get_env(:live_debugger, :browser_features?) do %>
|
||||
<script id="live-debugger-scripts" src={Application.get_env(:live_debugger, :assets_url)}>
|
||||
</script>
|
||||
<% end %>
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="csrf-token" content={get_csrf_token()} />
|
||||
<.live_title default="Putzplan" suffix=" · Phoenix Framework">
|
||||
{assigns[:page_title]}
|
||||
</.live_title>
|
||||
<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>
|
||||
</head>
|
||||
<body class="bg-white">
|
||||
{@inner_content}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue