live_beats/lib/live_beats_web/components/layouts/root.html.heex

22 lines
645 B
Plaintext
Raw Normal View History

2021-09-02 18:00:57 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2022-08-03 13:40:11 +00:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-09-02 18:00:57 +00:00
<%= csrf_meta_tag() %>
2022-08-03 13:40:11 +00:00
<%= live_title_tag(assigns[:page_title] || "LiveBeats", suffix: " · Phoenix Framework") %>
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/assets/app.css")} />
<script
defer
phx-track-static
type="text/javascript"
src={Routes.static_path(@conn, "/assets/app.js")}
>
</script>
2021-09-02 18:00:57 +00:00
</head>
<body>
<%= @inner_content %>
2021-09-02 18:00:57 +00:00
</body>
</html>