28 lines
506 B
HTML
28 lines
506 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
|
<span class="slash">/</span>
|
|
<a href="/Blog" class="dir">Blog</a>
|
|
<span class="slash">/</span>
|
|
</header>
|
|
|
|
<div id="box">
|
|
{% include sidebar.html %}
|
|
|
|
<main id="content">
|
|
<h1> {{page.title}} </h1>
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
<!--{% include footer.html %}-->
|
|
</body>
|
|
|
|
</html>
|