Skip to content

Instantly share code, notes, and snippets.

@maxjacobson
Created June 2, 2013 00:57
Show Gist options
  • Save maxjacobson/5692225 to your computer and use it in GitHub Desktop.
Save maxjacobson/5692225 to your computer and use it in GitHub Desktop.
boilerplate jekyll index.html
---
layout: default
title: Your New Jekyll Site
---
<div id="home">
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment