19 lines
459 B
Markdown
19 lines
459 B
Markdown
|
---
|
||
|
layout: page
|
||
|
title: Blog
|
||
|
permalink: /blog.html
|
||
|
---
|
||
|
<div class="posts">
|
||
|
{% for post in site.posts %}
|
||
|
<article class="post">
|
||
|
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
||
|
|
||
|
<div class="entry">
|
||
|
{{ post.excerpt }}
|
||
|
</div>
|
||
|
<h4>Written on {{ post.date | date: "%B %e, %Y" }}</h4>
|
||
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
||
|
</article>
|
||
|
{% endfor %}
|
||
|
</div>
|