diff options
Diffstat (limited to 'app/controllers/blogs_controller.rb')
-rw-r--r-- | app/controllers/blogs_controller.rb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/app/controllers/blogs_controller.rb b/app/controllers/blogs_controller.rb index 4f6d9ce..6e80754 100644 --- a/app/controllers/blogs_controller.rb +++ b/app/controllers/blogs_controller.rb | |||
@@ -1,12 +1,7 @@ | |||
1 | require 'redcarpet/render_strip' | ||
2 | 1 | ||
3 | class StrippedSummary < Redcarpet::Render::StripDown | ||
4 | def block_html(raw_html) | ||
5 | nil | ||
6 | end | ||
7 | end | ||
8 | 2 | ||
9 | class BlogsController < ApplicationController | 3 | class BlogsController < ApplicationController |
4 | include ApplicationHelper | ||
10 | 5 | ||
11 | def summary | 6 | def summary |
12 | @blogs = Blog.where(published: true).order(published_at: :desc).paginate(page: params[:page], per_page: 10) | 7 | @blogs = Blog.where(published: true).order(published_at: :desc).paginate(page: params[:page], per_page: 10) |
@@ -33,12 +28,12 @@ class BlogsController < ApplicationController | |||
33 | @prev = @blog.prev | 28 | @prev = @blog.prev |
34 | @next = @blog.next | 29 | @next = @blog.next |
35 | 30 | ||
36 | body = Redcarpet::Markdown.new(StrippedSummary).render(@blog.body) | 31 | body = stripped_markdown(@blog.body) |
37 | 32 | ||
38 | set_meta_tags(og: { | 33 | set_meta_tags(og: { |
39 | title: @blog.title, | 34 | title: @blog.title, |
40 | type: "article", | 35 | type: "article", |
41 | description: (body.length <= 300 ? body : body[0..299]), | 36 | description: body[0, 299], |
42 | url: blog_url(@blog, host: "www.fourisland.com"), | 37 | url: blog_url(@blog, host: "www.fourisland.com"), |
43 | article: { | 38 | article: { |
44 | published_time: @blog.published_at.iso8601, | 39 | published_time: @blog.published_at.iso8601, |