Sha256: 43deff40267f75b3e91823c83aaa5b01644bdb1e93562d906a3b04e8a3d40a5a
Contents?: true
Size: 610 Bytes
Versions: 9
Compression:
Stored size: 610 Bytes
Contents
--- template: ~ --- pipeline:erb <?xml version="1.0" encoding="utf-8" ?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <% context.node.alcns.each do |alcn| item = context.node.tree[alcn] %> <url> <loc><%= URI.escape(File.join(context.node['site_url'], item.path)) %></loc> <lastmod><%= item['modified_at'].iso8601 %></lastmod> <changefreq><%= item['change_freq'] || context.node['default_change_freq'] %></changefreq> <% if priority = item['priority'] || context.node['default_priority'] %> <priority><%= priority %></priority> <% end %> </url> <% end %> </urlset>
Version data entries
9 entries across 9 versions & 2 rubygems