aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-02-17 20:34:55 -0500
committerGravatar Barry Clark <barry@barryclark.co> 2014-02-17 20:34:55 -0500
commit0df8994e5f44bd42fff2302711bda9a59bcb9dcf (patch)
tree2a72873b8823d45faa0ba19b70f3cdbdee9134f4 /index.html
parent9931bd1ed25bf92afcc7782269281169ebceb578 (diff)
downloadkompetenzbolzen.github.io-0df8994e5f44bd42fff2302711bda9a59bcb9dcf.tar.gz
Style Guide, and all markdown content styled
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>