ruby-x.github.io/app/helpers/application_helper.rb

26 lines
624 B
Ruby
Raw Normal View History

2018-04-10 17:25:46 +02:00
module ApplicationHelper
2018-04-10 21:48:23 +02:00
def post_link(index)
post = Post.posts.values[index]
return "" unless post
link = post.date.to_s + " "
link += link_to( post.title , blog_post_url(post.slug))
link.html_safe
end
2018-04-11 09:45:50 +02:00
def ext_link(name = nil, options = nil, html_options = nil, &block)
target_blank = {target: "_blank"}
if block_given?
options ||= {}
options = options.merge(target_blank)
else
html_options ||= {}
html_options = html_options.merge(target_blank)
end
link_to(name, options, html_options, &block)
end
def title(title)
@title = title
end
2018-04-10 17:25:46 +02:00
end