* Add <meta> descriptions to more pages. * Adjust wiki/pool/forum pages to use an excerpt of the first paragraph.
7 lines
276 B
Ruby
7 lines
276 B
Ruby
module WikiPagesHelper
|
|
def wiki_page_other_names_list(wiki_page)
|
|
names_html = wiki_page.other_names.map {|name| link_to(name, "http://www.pixiv.net/search.php?s_mode=s_tag_full&word=#{u(name)}", :class => "wiki-other-name")}
|
|
names_html.join(" ").html_safe
|
|
end
|
|
end
|