Current section

Files

Jump to
torch priv templates heex layout.html.heex
Raw

priv/templates/heex/layout.html.heex

<!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() %>
<title>Admin</title>
<!-- Uncomment to just use the bare bones torch styles rather than the theme -->
<!--<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/torch/base.css")}>-->
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/torch/theme.css")}>
</head>
<body class={Torch.PageView.body_classes(@conn)}>
<header>
<section id="torch-account-info">
<div class="torch-container">
<a href="/">user@example.com</a>
<a href="/">Logout</a>
</div>
</section>
<section id="torch-nav">
<div class="torch-container">
<div class="torch-logo">
<a href="/">
<h3>Torch</h3>
</a>
</div>
<nav class="torch-nav">
<!-- nav links here -->
</nav>
</div>
</section>
</header>
<%= Torch.FlashView.render("_flash_messages.html", assigns) %>
<%= @inner_content %>
<script defer src={Routes.static_path(@conn, "/torch/torch.js")}></script>
</body>
</html>