You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
joinplu.me/source/layouts/layout.erb

23 lines
766 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 || "Middleman" %></title>
<%= stylesheet_link_tag "site" %>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body>
<%= yield %>
<footer>
<%= _('Website under the GPL 3.0 license.') %>
&mdash;
<a href="https://github.com/Plume-org/joinplu.me"><%= _('Source code of this website') %></a>
</footer>
<script>feather.replace()</script>
<%= javascript_include_tag "site" %>
</body>
</html>