mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 04:55:38 +01:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
|
{{ range .Data.Pages }}
|
|
{{ if (eq .IsPage true) }}
|
|
{{ $rating := index .Site.Data.compatibility ( string .Params.compatibility | default "0" ) }}
|
|
<url>
|
|
|
|
<loc>{{ .Permalink }}</loc>
|
|
|
|
{{ if (eq .Section "entry") }}
|
|
<image:image>
|
|
<image:loc>{{ .Site.BaseURL }}/images/banners/{{ .Params.Banner | default (print .File.BaseFileName ".png") }}</image:loc>
|
|
</image:image>
|
|
{{ else if (eq .Section "game") }}
|
|
<image:image>
|
|
<image:loc>{{ .Site.BaseURL }}/images/game/icons/{{ .File.BaseFileName }}.png</image:loc>
|
|
</image:image>
|
|
{{ end }}
|
|
|
|
{{ if not .Lastmod.IsZero }}<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}
|
|
{{ with .Sitemap.ChangeFreq }}<changefreq>{{ . }}</changefreq>{{ end }}
|
|
{{ if ge .Sitemap.Priority 0.0 }}<priority>{{ .Sitemap.Priority }}</priority>{{ end }}
|
|
</url>
|
|
{{ end }}
|
|
{{ end }}
|
|
</urlset>
|
|
|