2017-11-15 06:49:46 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-12-19 03:07:47 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
<head>
|
|
|
|
{% include head.html %}
|
|
|
|
<meta property="og:type"
|
|
|
|
content="article"/>
|
|
|
|
<meta property="article:published_time"
|
|
|
|
content="{{ page.date | date_to_xmlschema }}"/>
|
|
|
|
<meta property="article:section"
|
|
|
|
content="Blog"/>
|
|
|
|
|
|
|
|
{% for tag in page.tags %}
|
|
|
|
<meta property="article:tag" content="{{ tag }}"/>
|
|
|
|
{% endfor %}
|
|
|
|
</head>
|
2017-11-24 22:33:51 +00:00
|
|
|
|
|
|
|
<body>
|
2017-11-29 04:24:14 +00:00
|
|
|
<header>
|
2017-12-19 03:07:47 +00:00
|
|
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
|
|
|
<span class="slash">/</span>
|
2017-11-29 04:24:14 +00:00
|
|
|
<a href="/Blog" class="dir">Blog</a>
|
2017-12-19 05:15:35 +00:00
|
|
|
<span class="slash">/</span>
|
2017-11-29 04:24:14 +00:00
|
|
|
</header>
|
2017-11-24 22:33:51 +00:00
|
|
|
|
2017-12-19 05:15:35 +00:00
|
|
|
<div id="box">
|
2017-11-28 22:50:36 +00:00
|
|
|
{% include sidebar.html %}
|
2017-11-15 06:49:46 +00:00
|
|
|
|
2017-12-19 05:15:35 +00:00
|
|
|
<main id="content">
|
2017-12-24 23:04:19 +00:00
|
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
|
|
|
|
|
|
{% include post-info.html tags = page.tags date=page.date%}
|
|
|
|
|
2017-11-28 22:50:36 +00:00
|
|
|
{{ content }}
|
2017-12-19 05:15:35 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
2017-11-28 22:50:36 +00:00
|
|
|
<!--{% include footer.html %}-->
|
2017-11-24 22:33:51 +00:00
|
|
|
</body>
|
|
|
|
|
2017-12-19 03:07:47 +00:00
|
|
|
</html>
|