1
0
mirror of https://github.com/danbee/persephone-web.git synced 2025-03-04 08:39:07 +00:00
persephone-web/source/layouts/layout.erb
2020-02-19 18:37:54 -05:00

22 lines
846 B
Plaintext

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Use the title from a page's frontmatter if it has one -->
<title><%= current_page.data.title %></title>
<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/7434852/6168012/css/fonts.css" />
<meta property="og:title" content="<%= current_page.data.title %>" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://persephone.fm" />
<meta property="og:image" content="https://persephone.fm/images/og.png" />
<%= stylesheet_link_tag "site" %>
<%= javascript_include_tag "site" %>
</head>
<body>
<%= yield %>
</body>
</html>