Style Guide, and all markdown content styled

This commit is contained in:
Barry Clark 2014-02-17 20:34:55 -05:00
parent 9931bd1ed2
commit 0df8994e5f
10 changed files with 194 additions and 57 deletions

View file

@ -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="entry">{{ post.content | truncatewords:40}}</div>
<div class="date">
{{ post.date | date: "%B %e, %Y" }}
</div>
<div class="entry">
{{ post.content | truncatewords:40}}
</div>
<a href="{{ post.url }}" class="read-more">Read More</a>
</article>