index.html 291 B

12345678910111213
  1. ---
  2. layout: default
  3. title: Your New Jekyll Site
  4. ---
  5. <div id="home">
  6. <h1>Blog Posts</h1>
  7. <ul class="posts">
  8. {% for post in site.posts %}
  9. <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
  10. {% endfor %}
  11. </ul>
  12. </div>