This commit is contained in:
Andrew Miller 2017-03-07 10:47:35 -06:00
parent b4329be5ea
commit cc6650cd69
1 changed files with 12 additions and 0 deletions

12
index.html Normal file
View File

@ -0,0 +1,12 @@
---
layout: page
title: Latest Posts
excerpt: "A simple and clean responsive Jekyll theme for words and photos."
search_omit: true
---
<ul class="post-list">
{% for post in site.posts limit:10 %}
<li><article><a href="{{ site.url }}{{ post.url }}">{{ post.title }} <span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time></span>{% if post.excerpt %} <span class="excerpt">{{ post.excerpt | remove: '\[ ... \]' | remove: '\( ... \)' | markdownify | strip_html | strip_newlines | escape_once }}</span>{% endif %}</a></article></li>
{% endfor %}
</ul>