huskyapp.dev/_layouts/default.html

33 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>{{site.title}}</title>
<meta name="description" content="{{site.description}}">
<meta property="og:title" content="{{site.title}}" />
<meta property="og:image" content="/images/icon.png" />
<link rel="shortcut icon" type="image/webp" href="/images/icon.webp"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#D8A070">
<link rel="stylesheet" href="/styles/husky-mdl.css">
<!-- Unimportant stylesheets and scripts -->
<link rel="preload" href="/icons/css/icons.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="/icons/css/icons.css"></noscript>
<script defer src="/scripts/material.min.js"></script>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--no-drawer-button">
<!-- No header since we don't have any pages to show off.
{% include header.html %}
-->
<main class="mdl-layout__content">
<div class="page-content">
{{content}}
</div>
{% include footer.html %}
</main>
</div>
</body>
</html>