29 lines
580 B
HTML
29 lines
580 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
{% include head.html %}
|
|
|
|
<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 class="post-title">{{ page.title }}</h1>
|
|
|
|
{% include post-info.html tags = page.tags date=page.date%}
|
|
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
<!--{% include footer.html %}-->
|
|
</body>
|
|
|
|
</html>
|