Packages

An open and opinionated DeFi/CeFi/TradFi trading platform using productive & familiar open source libraries and tools for strategy research, execution and operation

Current section

Files

Jump to
prop lib prop_web templates layout root.html.leex
Raw

lib/prop_web/templates/layout/root.html.leex

<!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() %>
<%= live_title_tag assigns[:page_title] || "Prop", suffix: " - Fremantle Industries" %>
<link phx-track-static rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<script defer phx-track-static type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
</head>
<body>
<header class="bg-gray-50 py-4 px-4">
<div class="flex justify-between items-center">
<%= render Navigator, "horizontal.html", conn: @conn %>
<%= live_render(@conn, NotifiedPhoenix.BadgeLive, []) %>
</div>
</header>
<main role="main" class="mx-4 py-4">
<%= @inner_content %>
</main>
</body>
</html>