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/controllers | |
| 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/controllers')
| -rw-r--r-- | app/controllers/blogs_controller.rb | 15 |
1 files changed, 15 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 |
