aboutsummaryrefslogtreecommitdiff
path: root/index.html
blob: aeae8fe2122eccf1eff90df7ac7eba1db19c70d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
---

<ul class="posts">
  {% for post in site.posts %}
    <li>
      <article class="post">
        <header>
          <time datetime="{{ post.date }}">{{ post.date | date: "%m.%d.%Y" }}</time>
          <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
        </header>

        <div class="entry">
          {{ post.content | truncatewords:85}}

          <p class="read-more">
            <a href="{{ post.url }}">Read more</a>
          </p>
        </div>
      </article>
    </li>
  {% endfor %}
</ul>