23 lines
384 B
HTML
23 lines
384 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>
|
|
|
|
<div id="box">
|
|
{% include sidebar.html %}
|
|
|
|
<main id="content">
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
<!--{% include footer.html %}-->
|
|
</body>
|
|
|
|
</html>
|