22 lines
394 B
HTML
22 lines
394 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
<header>
|
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
|
<span class="slash">/</span>
|
|
{{ page.title }}
|
|
</header>
|
|
|
|
<main>
|
|
{% include sidebar.html %}
|
|
|
|
<article id="content">
|
|
{{ content }}
|
|
</article>
|
|
</main>
|
|
<!--{% include footer.html %}-->
|
|
</body>
|
|
|
|
</html> |