summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: c3410b087b2be3c3ea75de2109572bb7a1f328f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
layout: default
---
<div id="Blog">
    <article class="post">
        {% if page.image %}
            <img src="{{ page.image | relative_url }}" class="featured-image">
        {% endif %}
            <h1>{{ page.title }}</h1>
            <small><p class="post-date">Published Date: {{ page.date | date: "%B %d, %Y" }}</p>x</small>
        {{ content }}
    </article>
</div>