blob: ead5d1c68f8437c86b7224b78b239e54990a63c4 (
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></small>
{{ content }}
</article>
</div>
|