Repository URL to install this package:
Version:
0.2.3 ▾
|
module NeotericNews
module PostsHelper
def post_path(post)
date = post.published_at
news_post_path(:year => date.year,
:month => date.month,
:id => post.slug)
end
end
end