Fork files from barryclark/jekyll-now.

This commit is contained in:
mattbk
2017-03-09 12:28:34 -06:00
parent aa621b983f
commit 15002dc406
24 changed files with 698 additions and 0 deletions

18
index.html Normal file
View File

@ -0,0 +1,18 @@
---
layout: default
---
<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>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>