quirkey / sinatra.github.com forked from sinatra/sinatra.github.com

“The best revenge is massive success.”

This URL has Read+Write access

sinatra.github.com / blog.html
100644 18 lines (16 sloc) 0.407 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
title: "Sinatra: The Blog"
id: blog
---
 
{% for post in site.posts %}
<div class='post'>
  <h1><a href='{{ post.url }}'>{{ post.title }}</a></h1>
  <p class='meta'>
    Posted by <a href='{{ post.author_url }}'>{{ post.author }}</a>
    on <strong>{{ post.publish_date }}</strong>
    <a href='{{ post.url }}' title='Post permalink'>#</a>
  </p>
  {{ post.content }}
</div>
{% endfor %}