forked from plume/documentation
31 lines
1 KiB
Text
31 lines
1 KiB
Text
<!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>
|
|
<link rel="stylesheet" type="text/css" href="https://unpkg.com/swagger-ui-dist@3.12.1/swagger-ui.css">
|
|
<style><%= Rouge::Themes::Github.render(:scope => '.highlight') %></style>
|
|
</head>
|
|
<body>
|
|
<%= partial 'nav' %>
|
|
<header>
|
|
<h1><%= current_page.data.title %></h1>
|
|
</header>
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
<footer>
|
|
Website under the GPL 3.0 license.
|
|
—
|
|
<a href="https://github.com/Plume-org/docs">Source code of this website</a>
|
|
</footer>
|
|
<script>feather.replace()</script>
|
|
<%= javascript_include_tag "site" %>
|
|
</body>
|
|
</html>
|
|
|