posts.html 270 B

123456789101112
  1. ---
  2. layout: default
  3. title: Posts
  4. ---
  5. <div class="posts">
  6. <h2>Posts</h2>
  7. <ul class="list-unstyled">
  8. {% for post in site.posts %}
  9. <li><code>{{ post.date | date:'%Y-%m-%d' }}</code>&mdash; <a href="{{ post.url }}">{{ post.title }}</a></li>
  10. {% endfor %}
  11. </ul>
  12. </div>