Files
wona.github.com/_layouts/post.html
2015-10-09 01:02:45 +05:30

35 lines
631 B
HTML

---
layout: layout
---
{% if page.isImageCover != false %}
{% if page.image %}
<div class="cover">
<img src="/images/posts/{{ page.image }}" alt="">
</div>
{% endif %}
{% endif %}
<section class="post">
<h1>
<a href="{{ page.url }}">{{ page.title }}</a>
</h1>
<section class="byline">
{{ page.date | date: "%B %e, %Y" }}
</section>
<section class="content{% if page.justify %} justify{% endif %}">
{{ content }}
</section>
</section>
{% if page.isImageCover == false %}
{% if page.image %}
<div class="cover">
<img src="/images/posts/{{ page.image }}" alt="">
</div>
{% endif %}
{% endif %}