about summary refs log tree commit diff stats
path: root/app/views/blogs/_blog.html.haml
blob: 5467683ca9c08a0eb0f9fbed76410396d0c9013f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%article#blog-post
  %header
    .post-calendar{ class: "post-date-#{(blog.visible_date.year - 2007) % 4 + 1}" }
      %span.post-month= blog.visible_date.strftime("%^b")
      %span.post-day= blog.visible_date.day
    .blog-title
      %h2= link_to_unless_current blog.title, blog
      .post-author Hatkirby
      %ul.post-tag-3
        - blog.tags.each do |tag|
          %li= link_to tag, tag_url(tag.name)
  %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.visible_date.strftime("%B #{blog.visible_date.day.ordinalize}, %Y at %-I:%M:%S%P")