Current section
Files
Jump to
Current section
Files
priv/templates/base.html.eex
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>
<%= @page.title %><%= if @site.name != "" do %> - <% end %><%= @site.name %>
</title>
<link rel="stylesheet" href="<%= asset "css/style.css" %>">
<link rel="stylesheet" href="<%= asset "css/prism.css" %>">
<%= include "head-extras" %>
</head>
<body>
<div id="wrapper">
<header id="top"><%= include "banner" %></header>
<nav><%= include "nav" %></nav>
<main><%= @contents %></main>
<footer>
<%= include "footer" %>
</footer>
</div>
<script src="<%= asset "js/prism.js" %>"></script>
</body>
</html>