-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP Signed-off-by: Ian Maddaus <[email protected]> * Additional sitemap-main layout updates Signed-off-by: Ian Maddaus <[email protected]> * Update main sitemap layout Signed-off-by: Ian Maddaus <[email protected]> * Update sitemaps param Signed-off-by: Ian Maddaus <[email protected]> --------- Signed-off-by: Ian Maddaus <[email protected]>
- Loading branch information
Showing
5 changed files
with
69 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" | safeHTML }} | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | ||
xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||
{{ range .Site.Pages }} | ||
{{- if or (eq (isset .Params "sitemapexclude") false) (ne .Params.sitemapExclude true) }} | ||
<url> | ||
<loc>{{ .Permalink }}</loc>{{ 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 }}{{ if .IsTranslated }}{{ range .Translations }} | ||
<xhtml:link | ||
rel="alternate" | ||
hreflang="{{ .Language.Lang }}" | ||
href="{{ .Permalink }}" | ||
/>{{ end }} | ||
<xhtml:link | ||
rel="alternate" | ||
hreflang="{{ .Language.Lang }}" | ||
href="{{ .Permalink }}" | ||
/>{{ end }} | ||
</url> | ||
{{- end }} | ||
{{ end }} | ||
</urlset> | ||
|
||
<!-- From https://dereckcurry.com/posts/excluding-pages-from-the-sitemap/ --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} | ||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
{{- range .Site.Params.sitemaps }} | ||
<sitemap> | ||
<loc>{{ . }}</loc> | ||
</sitemap> | ||
{{ end -}} | ||
</sitemapindex> | ||
|
||
<!-- https://developers.google.com/search/docs/crawling-indexing/sitemaps/large-sitemaps --> | ||
<!-- https://swiftype.com/documentation/site-search/crawler-configuration/sitemap --> |