aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html13
1 files changed, 9 insertions, 4 deletions
diff --git a/index.html b/index.html
index 2f3de29..2accc19 100644
--- a/index.html
+++ b/index.html
@@ -5,11 +5,16 @@ layout: default
<div class="posts">
{% for post in site.posts %}
<article class="post">
- <header>
- <h1>{{ post.title }}</h1>
- </header>
+
+ <h1>{{ post.title }}</h1>
+
+ <div class="date">
+ {{ post.date | date: "%B %e, %Y" }}
+ </div>
- <div class="entry">{{ post.content | truncatewords:40}}</div>
+ <div class="entry">
+ {{ post.content | truncatewords:40}}
+ </div>
<a href="{{ post.url }}" class="read-more">Read More</a>
</article>