48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://necolas.github.io/normalize.css/8.0.1/normalize.css"
|
||
/>
|
||
<link
|
||
rel="stylesheet"
|
||
href="{{ get_url(path='style.css', trailing_slash=false) }}"
|
||
/>
|
||
<style></style>
|
||
<title>Dustin C. Hatch</title>
|
||
{% block links %}{% endblock %}
|
||
</head>
|
||
|
||
<body>
|
||
<header class="page-header">
|
||
<div class="logo">
|
||
<a href="{{ config.base_url }}">
|
||
{{ load_data(path="static/dustin.svg") | safe }}
|
||
</a>
|
||
</div>
|
||
<nav class="main-nav">
|
||
<ul>
|
||
<li><a href="{{ config.base_url }}">Home</a></li>
|
||
<li><a href="{{ get_url(path='/blog') }}">Blog</a></li>
|
||
</ul>
|
||
</nav>
|
||
</header>
|
||
|
||
<main id="content" class="main-content" role="main">
|
||
<div class="main-content">
|
||
{% block content %}{% endblock %}
|
||
</div>
|
||
</main>
|
||
|
||
<footer class="page-footer">
|
||
<hr />
|
||
<span class="copyright">Copyright © 2010–2021 Dustin C. Hatch</span>
|
||
♫
|
||
<span>Built with <a href="https://www.getzola.org/">Zola</a><span>
|
||
</footer>
|
||
</body>
|
||
</html>
|