summaryrefslogtreecommitdiff
path: root/lib/nola_web/templates/layout/root.html.leex
blob: 6a4850654dc2dcecb65f9352e9f90806dcc69c04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
  <head>
    <%= page_title(@conn) %>
    <meta charset="utf-8">
    <meta name="robots" content="noindex, nofollow, nosnippet">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="robots" content="noindex, noarchive, nofollow, nosnippet" />
    <title><%= Map.get(assigns, :title, "") %></title>
    <link rel="stylesheet" href="<%= static_path(@conn, "/assets/site.css") %>">
    <%= csrf_meta_tag() %>
    <script src="<%= static_path(@conn, "/assets/site.js") %>" defer></script>
  </head>
  <body>
        <%= @inner_content %>
  </body>
</html>