mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
234 B
Ruby
10 lines
234 B
Ruby
module TopicsHelper
|
|
|
|
def render_topic_title(topic)
|
|
link_to(topic.title,topic.relative_url)
|
|
end
|
|
|
|
def render_topic_next_page_link(topic, next_page)
|
|
link_to("next page", "#{topic.relative_url}?page=#{next_page}")
|
|
end
|
|
end
|