2ff764f331
* Initial checkin of refactoring gulp / scss * Updated gitignore. * Removing build directory. * Updated package.json, removed downloads script. * Removed assets_backup. Added back travis. Added back github pages dependency. Changed assets to src. * Updated javascript rendering. * Removing citra-theme button overrides in favor of scss. * Refactored hyperlinks underline color * Replacing manual string concat with backtick.
26 lines
1.0 KiB
XML
26 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>
|