29 lines
895 B
HTML
29 lines
895 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<link href="/assets/main.css" rel="stylesheet" />
|
|
<script src="/assets/htmx.min.js"></script>
|
|
<!-- Allow any inheriting page to set it's own title -->
|
|
<title>Awstin</title>
|
|
<!-- Allow any inheriting page to extend head with additional assets -->
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Inheriting pages will have their content rendered here, similar to app root in React, Angular, etc. -->
|
|
<h1><a href="/">Awstin Chubb</a></h1>
|
|
<div class="navbar">
|
|
<ul class="navbar-list">
|
|
<li><a href="/blog">Blog</a></li>
|
|
<li><a href="/projects">Projects</a></li>
|
|
<li><a href="/now">Now</a></li>
|
|
<li><a href="/about">About</a></li>
|
|
<li><a href="/contact">Contact</a></li>
|
|
</ul>
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
|
|
</html>
|