Sha256: c7a444c0881d170ef9089f63cb7f8588896ed01468b53bfa09cd96760d065e36
Contents?: true
Size: 1.75 KB
Versions: 6
Compression:
Stored size: 1.75 KB
Contents
xml.instruct! :xml, version: '1.0' xml.urlset 'xmlns' => 'http://www.sitemaps.org/schemas/sitemap/0.9' do current_site.get_languages.each_with_index do |lang, index| lang = (index.zero? ? nil : lang) xml.url do xml.loc current_site.the_url(locale: lang) xml.lastmod current_site.updated_at.to_date xml.changefreq 'daily' xml.priority '1.0' end current_site.the_posts.decorate.each do |post| next if @r[:skip_post_ids].include?(post.id) xml.url do xml.loc post.the_url(locale: lang) xml.lastmod post.updated_at.to_date xml.changefreq 'monthly' xml.priority '0.5' end end current_site.full_categories.no_empty.decorate.each do |cat| next if @r[:skip_cat_ids].include?(cat.id) xml.url do xml.loc cat.the_url(locale: lang) xml.lastmod cat.updated_at.to_date xml.changefreq 'monthly' xml.priority '0.5' end end current_site.post_types.decorate.each do |ptype| next if @r[:skip_posttype_ids].include?(ptype.id) xml.url do xml.loc ptype.the_url(locale: lang) xml.lastmod ptype.updated_at.to_date xml.changefreq 'monthly' xml.priority '0.5' end end current_site.post_tags.decorate.each do |tag| next if @r[:skip_tag_ids].include?(tag.id) xml.url do xml.loc tag.the_url(locale: lang) xml.lastmod tag.updated_at.to_date xml.changefreq 'monthly' xml.priority '0.5' end end end @r[:custom].each do |_key, item| xml.url do xml.loc item[:url] xml.lastmod item[:lastmod] || Date.today.to_s xml.changefreq item[:changefreq] || 'monthly' xml.priority item[:priority] || '0.5' end end end
Version data entries
6 entries across 6 versions & 1 rubygems