diff --git a/views/post_single.haml b/views/post_single.haml index d20c04e..f8dbb5a 100644 --- a/views/post_single.haml +++ b/views/post_single.haml @@ -4,5 +4,11 @@ %a{:href => "/post/#{@post.id}"}=@post.title %footer .author=@post.account.username - .date=@post.written + .date + .day=@post.written.strftime('%d') + .month=@post.written.strftime('%B') + .year=@post.written.strftime('%Y') + .time + .hour=@post.written.strftime('%H') + .minute=@post.written.strftime('%M') %section~markup(@post.content, @post.markup)