14 lines
304 B
Markdown
14 lines
304 B
Markdown
|
---
|
||
|
layout: page
|
||
|
---
|
||
|
|
||
|
<ul id="post-list">
|
||
|
{% for post in site.posts %}
|
||
|
<li>
|
||
|
<h5 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h5>
|
||
|
<p class="post-info">{{ post.date | date: "%a %b %d, %Y" }}</p>
|
||
|
{{ post.content | truncate: 350 }}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|