aboutsummaryrefslogtreecommitdiff
path: root/index.html
blob: 4ea92e71cf2e4007924ee7b0093eeed39e220fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: default
---

<div class="posts">
  {% for post in site.posts %}
  <article class="post">    
    <header>
      <h2>{{ post.title }}</h2>
    </header>

    <div class="entry">{{ post.content | truncatewords:50}}</div>
    
    <a href="{{ post.url }}">Read More</a>
  </article>
  {% endfor %}
</div>