mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-25 09:20:59 +00:00
17 lines
613 B
Text
17 lines
613 B
Text
<!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" />
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
|
<.live_title suffix=" · Phoenix Framework">
|
|
<%= assigns[:page_title] || "LiveBeats" %>
|
|
</.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>
|
|
<%= @inner_content %>
|
|
</body>
|
|
</html>
|