2020-09-12 18:43:17 -04:00
|
|
|
<!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() %>
|
2021-03-25 20:31:32 -04:00
|
|
|
<%= live_title_tag assigns[:page_title] || "", suffix: assigns[:page_title] && " · Shift73k" || "Shift73k" %>
|
2020-09-12 18:43:17 -04:00
|
|
|
<link phx-track-static rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
|
|
|
<script defer phx-track-static type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-02-25 15:27:31 -05:00
|
|
|
|
|
|
|
<%= render "_navbar.html", assigns %>
|
|
|
|
|
2020-09-12 18:43:17 -04:00
|
|
|
<%= @inner_content %>
|
2021-02-25 15:27:31 -05:00
|
|
|
|
2020-09-12 18:43:17 -04:00
|
|
|
</body>
|
|
|
|
</html>
|