blob: 26657e792d63f8135289533b92188f413a2b8d70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
%article#blog-post
%header
.post-calendar{ class: "post-date-#{(blog.published_at.year - 2007) % 4 + 1}" }
%span.post-month= blog.published_at.strftime("%^b")
%span.post-day= blog.published_at.day
.blog-title
%h2= link_to_unless_current blog.title, blog
.post-author Hatkirby
%blockquote#blog-content.entry-content.bubble.rounded.bottom
- if short and blog.has_read_more
= markdown(blog.short_body)
= link_to "Read more...", blog
- else
= markdown(blog.body)
%cite.bubble
%strong Hatkirby
on
= blog.published_at.strftime("%m-%d-%Y")
|