diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-11 12:26:55 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-11 12:26:55 -0400 |
commit | 85de7c04ab66e8029d69b350fbfecd22a8673fc2 (patch) | |
tree | 0cb0be99597d2395ebe6464a5328486a35c3e7b8 /app/views | |
parent | e09aa803cf3905c82c29dbaa9101cc4a4639cc5a (diff) | |
download | thoughts-85de7c04ab66e8029d69b350fbfecd22a8673fc2.tar.gz thoughts-85de7c04ab66e8029d69b350fbfecd22a8673fc2.tar.bz2 thoughts-85de7c04ab66e8029d69b350fbfecd22a8673fc2.zip |
Blog title links
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/blogs/_blog.html.haml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/blogs/_blog.html.haml b/app/views/blogs/_blog.html.haml index 389f961..26657e7 100644 --- a/app/views/blogs/_blog.html.haml +++ b/app/views/blogs/_blog.html.haml | |||
@@ -4,7 +4,7 @@ | |||
4 | %span.post-month= blog.published_at.strftime("%^b") | 4 | %span.post-month= blog.published_at.strftime("%^b") |
5 | %span.post-day= blog.published_at.day | 5 | %span.post-day= blog.published_at.day |
6 | .blog-title | 6 | .blog-title |
7 | %h2= blog.title | 7 | %h2= link_to_unless_current blog.title, blog |
8 | .post-author Hatkirby | 8 | .post-author Hatkirby |
9 | %blockquote#blog-content.entry-content.bubble.rounded.bottom | 9 | %blockquote#blog-content.entry-content.bubble.rounded.bottom |
10 | - if short and blog.has_read_more | 10 | - if short and blog.has_read_more |
@@ -12,3 +12,7 @@ | |||
12 | = link_to "Read more...", blog | 12 | = link_to "Read more...", blog |
13 | - else | 13 | - else |
14 | = markdown(blog.body) | 14 | = markdown(blog.body) |
15 | %cite.bubble | ||
16 | %strong Hatkirby | ||
17 | on | ||
18 | = blog.published_at.strftime("%m-%d-%Y") | ||