Style Guide, and all markdown content styled
This commit is contained in:
parent
9931bd1ed2
commit
0df8994e5f
10 changed files with 194 additions and 57 deletions
13
index.html
13
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="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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue