35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>{% block title %}{{ config.title }}{% endblock %}</title>
|
||
|
|
<meta name="description" content="{{ config.description }}">
|
||
|
|
|
||
|
|
{# Open Graph / social card. Reuses the SVG hex mark as the image. #}
|
||
|
|
<meta property="og:type" content="website">
|
||
|
|
<meta property="og:title" content="{{ config.title }}">
|
||
|
|
<meta property="og:description" content="{{ config.description }}">
|
||
|
|
<meta property="og:url" content="{{ config.base_url }}">
|
||
|
|
<meta property="og:image" content="{{ get_url(path='hyperhive.svg') }}">
|
||
|
|
<meta name="twitter:card" content="summary_large_image">
|
||
|
|
|
||
|
|
<link rel="icon" type="image/svg+xml" href="{{ get_url(path='favicon.svg') }}">
|
||
|
|
<link rel="stylesheet" href="{{ get_url(path='main.css') }}">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main class="shell">
|
||
|
|
{% block content %}{% endblock %}
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<footer class="site-footer">
|
||
|
|
<pre class="banner-thin">░▒▓█▓▒░ HYPERHIVE ░▒▓█▓▒░</pre>
|
||
|
|
<p class="footer-links">
|
||
|
|
<a href="http://localhost:3000/hyperhive">code on the forge</a>
|
||
|
|
<span class="sep">·</span>
|
||
|
|
<a href="{{ get_url(path='') }}">home</a>
|
||
|
|
</p>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|