23 lines
888 B
Text
23 lines
888 B
Text
<!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] || "", prefix: assigns[:page_title] && "73k \\ " || "73k" %>
|
|
<meta name="author" content="Adam Piontek"/>
|
|
<link rel="me" href="mailto:adam@73k.us"/>
|
|
<link rel="me" href="sms:+16462341697"/>
|
|
<link rel="authorization_endpoint" href="https://indieauth.com/auth"/>
|
|
<link phx-track-static rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
|
<script defer phx-track-static type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<%= render "_navbar.html", assigns %>
|
|
|
|
<%= @inner_content %>
|
|
|
|
</body>
|
|
</html>
|