art/_layouts/post.html

36 lines
566 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">
<h1>{{ post.title }}</h1>
</header>
<span class="image main"><img src="{{ post.image }}" alt="" /></span>
<p>{{ content }}</p>
</div>
</section>
</div>
{% include footer.html %}
2016-08-25 23:55:08 +00:00
</body>
</html>