@shift72/core-template 1.9.30 → 1.9.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.30...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.31...HEAD)
4
4
 
5
- ## [1.9.30](https://github.com/shift72/core-template/compare/1.9.29...1.9.30)
5
+ ## [1.9.31](https://github.com/shift72/core-template/compare/1.9.29...1.9.31)
6
6
 
7
7
  ### Added
8
8
 
@@ -13,6 +13,10 @@
13
13
 
14
14
  - Added CSS vars for playback progress. Reduce default size from 6px to 3px (affects TV episode sub-items)
15
15
 
16
+ ### Fixed
17
+
18
+ - Sitemap including external pages linking out of site
19
+
16
20
  ## [1.9.29](https://github.com/shift72/core-template/compare/1.9.28...1.9.29)
17
21
 
18
22
  ### Added
package/kibble.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-template",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
4
4
  "siteUrl": "https://tvoddemo.shift72.com",
5
5
  "builderVersion": "0.17.8",
6
6
  "defaultLanguage": "en",
@@ -199,5 +199,5 @@
199
199
  "pageSize": 0
200
200
  }
201
201
  ],
202
- "coreTemplateVersion": "1.9.30"
202
+ "coreTemplateVersion": "1.9.31"
203
203
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -1,13 +1,11 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3
3
  {{ range site.Pages }}
4
- <url>
5
- {{ if .PageType == "external" }}
6
- <loc>{{routeToSlug(.Slug)}}</loc>
7
- {{ else }}
8
- <loc>{{site.SiteConfig.SiteURL}}{{routeToSlug(.Slug)}}</loc>
9
- {{ end }}
10
- </url>
4
+ {{ if .PageType != "external" }}
5
+ <url>
6
+ <loc>{{site.SiteConfig.SiteURL}}{{routeToSlug(.Slug)}}</loc>
7
+ </url>
8
+ {{ end }}
11
9
  {{ end }}
12
10
 
13
11
  {{ range site.Films }}