drewcassidy.me/_layouts/post.html

46 lines
1.0 KiB
HTML
Raw Normal View History

2017-11-15 06:49:46 +00:00
<!DOCTYPE html>
<html>
<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>
<div id="page">
<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>
2017-11-24 22:33:51 +00:00
<div id="box">
{% include sidebar.html %}
2017-11-15 06:49:46 +00:00
<main id="content">
<h1 class="post-title">{{ page.title }}</h1>
2017-12-24 23:04:19 +00:00
{% include post-info.html tags = page.tags date=page.date%}
2017-12-24 23:04:19 +00:00
{{ content }}
</main>
</div>
</div>
<footer>
{% include footer.html %}
</footer>
2017-11-24 22:33:51 +00:00
</body>
</html>