seo: don't hide the front page from web crawlers.

Don't mark the front page (empty tag search) as noindex.
This commit is contained in:
evazion
2019-12-07 12:01:56 -06:00
parent 81f7d14fa3
commit 5919b825d7

View File

@@ -145,7 +145,9 @@ module PostSets
end
def hide_from_crawler?
!is_simple_tag? || page.to_i > 1
return true if current_page > 1
return true if !is_empty_tag? && !is_simple_tag?
false
end
def is_single_tag?