posts.html 338 B

1234567891011
  1. <ul class="posts">
  2. {% for post in site.posts %}
  3. <li>
  4. <div class="meta">{{ post.date | date_to_string }}</div>
  5. <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
  6. {{ post.content | split: '<cut />' | first }}
  7. <p class="read_more"><a href="{{ post.url }}">Read more..</a></p>
  8. </li>
  9. {% endfor %}
  10. </ul>