ezcontainer_example/lib/ezcontainer_railway_web/components/layouts/root.html.heex

16 lines
576 B
Text
Raw Normal View History

2023-10-24 23:23:57 -04:00
<!DOCTYPE html>
<html lang="en" class="[scrollbar-gutter:stable]">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="csrf-token" content={get_csrf_token()} />
<.live_title suffix=" · Phoenix Framework">
<%= assigns[:page_title] || "EzcontainerRailway" %>
</.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"}>
2023-10-25 03:58:10 -04:00
</script>
2023-10-24 23:23:57 -04:00
</head>
2023-10-25 23:19:22 -04:00
<%= @inner_content %>
2023-10-24 23:23:57 -04:00
</html>