diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-17 17:14:40 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-17 17:14:40 -0400 |
commit | 745b9e5485100c98cc73d1ff90661b43ade9404a (patch) | |
tree | 699dd3a32518b9752cdd3a68ddfab4671ecd6d22 /app | |
parent | 95e7c215df89608a5b10bebb87968c9a713bbf3d (diff) | |
download | thoughts-745b9e5485100c98cc73d1ff90661b43ade9404a.tar.gz thoughts-745b9e5485100c98cc73d1ff90661b43ade9404a.tar.bz2 thoughts-745b9e5485100c98cc73d1ff90661b43ade9404a.zip |
Added OpenGraph data for blog posts
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/blogs_controller.rb | 15 | ||||
-rw-r--r-- | app/views/layouts/application.html.haml | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/app/controllers/blogs_controller.rb b/app/controllers/blogs_controller.rb index 39a578a..0d218ae 100644 --- a/app/controllers/blogs_controller.rb +++ b/app/controllers/blogs_controller.rb | |||
@@ -1,3 +1,5 @@ | |||
1 | require 'redcarpet/render_strip' | ||
2 | |||
1 | class BlogsController < ApplicationController | 3 | class BlogsController < ApplicationController |
2 | 4 | ||
3 | def summary | 5 | def summary |
@@ -21,6 +23,19 @@ class BlogsController < ApplicationController | |||
21 | 23 | ||
22 | raise ActiveRecord::RecordNotFound unless @blog | 24 | raise ActiveRecord::RecordNotFound unless @blog |
23 | raise ActiveRecord::RecordNotFound unless @blog.published | 25 | raise ActiveRecord::RecordNotFound unless @blog.published |
26 | |||
27 | body = Redcarpet::Markdown.new(Redcarpet::Render::StripDown).render(@blog.body) | ||
28 | |||
29 | set_meta_tags(og: { | ||
30 | title: @blog.title, | ||
31 | type: "article", | ||
32 | description: (body.length <= 300 ? body : body[0..299]), | ||
33 | url: blog_url(@blog, host: "www.fourisland.com"), | ||
34 | article: { | ||
35 | published_time: @blog.published_at.iso8601, | ||
36 | modified_time: @blog.updated_at.iso8601 | ||
37 | } | ||
38 | }) | ||
24 | end | 39 | end |
25 | 40 | ||
26 | end | 41 | end |
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 92546d1..32afb5d 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml | |||
@@ -5,6 +5,7 @@ | |||
5 | = csrf_meta_tags | 5 | = csrf_meta_tags |
6 | = stylesheet_link_tag 'main', media: 'all', 'data-turbolinks-track': 'reload' | 6 | = stylesheet_link_tag 'main', media: 'all', 'data-turbolinks-track': 'reload' |
7 | = javascript_include_tag 'application', 'data-turbolinks-track': 'reload' | 7 | = javascript_include_tag 'application', 'data-turbolinks-track': 'reload' |
8 | = display_meta_tags og: { site_name: "Four Island" } | ||
8 | %body#main-body | 9 | %body#main-body |
9 | - if flash[:alert] | 10 | - if flash[:alert] |
10 | %div#flash.flash-alert= flash[:alert] | 11 | %div#flash.flash-alert= flash[:alert] |