Packages
torch
5.4.0
6.0.0
5.6.0
5.5.0
5.4.0
5.3.2
5.3.1
5.2.0
5.1.2
5.1.1
5.1.0
5.0.0
5.0.0-rc.4
5.0.0-rc.3
5.0.0-rc.2
5.0.0-rc.1
5.0.0-rc.0
4.3.2
4.3.1
4.3.0
4.2.1
4.2.0
retired
4.1.0
4.0.0
4.0.0-rc.0
3.9.1
3.9.0
3.8.0
3.7.1
3.7.0-rc.0
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.0
3.4.1
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.1.0
2.0.0
2.0.0-rc.3
2.0.0-rc.2
2.0.0-rc.1
1.0.0-rc.6
1.0.0-rc.5
1.0.0-rc.4
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
0.2.0-rc.5
0.2.0-rc.4
0.2.0-rc.3
0.2.0-rc.2
0.2.0-rc.1
0.1.0
Rapid admin generator for Phoenix
Current section
Files
Jump to
Current section
Files
priv/templates/torch.install/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"/>
<%= PhoenixHTMLHelpers.Tag.csrf_meta_tag() %>
<title>Torch Admin</title>
<!-- Uncomment to just use the bare bones torch styles rather than the theme -->
<!--<link phx-track-static rel="stylesheet" href={Phoenix.VerifiedRoutes.static_path(@conn, "/torch/base.css")}>-->
<link phx-track-static rel="stylesheet" href={Phoenix.VerifiedRoutes.static_path(@conn, "/torch/theme.css")}>
</head>
<body class={Torch.Helpers.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.Component.flash_messages flash={@conn.assigns.flash} />
<%= @inner_content %>
<script defer src={Phoenix.VerifiedRoutes.static_path(@conn, "/torch/torch.js")}></script>
</body>
</html>