art/_layouts/post.html

36 lines
615 B
HTML
Raw Normal View History

2016-08-25 23:55:08 +00:00
<!DOCTYPE html>
<!--
Forty by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
{% include head.html %}
<body>
2016-08-26 00:04:09 +00:00
{% include header.html %}
<!-- Main -->
<div id="main" class="alt">
<!-- One -->
<section id="one">
<div class="inner">
<header class="major">
2016-08-26 00:14:35 +00:00
<h1>{{ page.title }}</h1>
2016-08-26 00:04:09 +00:00
</header>
2016-08-29 20:07:21 +00:00
{% if page.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ page.image }}" alt="" /></span>{% endif %}
2016-08-26 00:04:09 +00:00
<p>{{ content }}</p>
</div>
</section>
</div>
{% include footer.html %}
2016-08-25 23:55:08 +00:00
</body>
</html>