2009-10-19 05:37:36 +05:30
|
|
|
---
|
2009-10-19 06:40:45 +05:30
|
|
|
layout: default
|
2009-10-19 05:37:36 +05:30
|
|
|
title: Blog
|
|
|
|
---
|
|
|
|
.blog
|
|
|
|
- site.posts.sort_by(&:date).reverse[0..9].each_with_index do |post,index|
|
2009-10-21 22:09:53 +05:30
|
|
|
.article
|
|
|
|
%h2= link_to(post.title, post.url, {:class=>"title"})
|
2009-11-12 07:19:17 +05:30
|
|
|
= preserve rp(post.content)
|
2009-11-08 10:55:12 +05:30
|
|
|
- if page.respond_to? :disqus_short_name
|
|
|
|
.footer
|
2009-11-07 23:35:10 +05:30
|
|
|
- if post.data["comments_off"]
|
|
|
|
%em.comments_off Comments disabled
|
|
|
|
- else
|
|
|
|
%a(href="#{post.url}/#disqus_thread")Comments
|
2009-10-21 22:09:53 +05:30
|
|
|
.footer
|
|
|
|
%a(href="/archives.html" title="archives") « Blog Archives
|