mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
35 lines
631 B
HTML
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 %}
|