master
1---
2layout: default
3---
4
5<div class="column is-12">
6 {% for post in site.posts %}
7 <article>
8 <h1 class='title'> <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> </h2>
9 <h2 class="subtitle"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%b %-d, %Y" }}</time>{% if post.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ post.author }}</span></span>{% endif %}</h2>
10 <div class="content">
11 <p> {{ post.content }} </p>
12 </div>
13 </article>
14 {% endfor %}
15</div>