gatsby-matrix-theme 34.0.23 → 34.0.24
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,3 +1,13 @@
|
|
|
1
|
+
## [34.0.24](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v34.0.23...v34.0.24) (2023-10-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add meta data ([4008fb8](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4008fb80899ef4c7fee53383979c1cc643dd3977))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'tm-3703' into 'master' ([82f68e6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/82f68e6a55f69efb463c4d0e9ddbccf7bed9796e))
|
|
10
|
+
|
|
1
11
|
## [34.0.23](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v34.0.22...v34.0.23) (2023-10-25)
|
|
2
12
|
|
|
3
13
|
|
package/package.json
CHANGED
|
@@ -67,6 +67,8 @@ const HeadData = ({ page = {}, siteInfo }) => {
|
|
|
67
67
|
<title>{metaTitle}</title>
|
|
68
68
|
<html lang={getLanguage(isIL || page.language)} />
|
|
69
69
|
<meta name="description" content={parsedMetaDescr} />
|
|
70
|
+
{process.env?.PLACENAME && <meta name="geo.placename" content={process.env.PLACENAME} />}
|
|
71
|
+
{process.env?.COUNTRY && <meta name="geo.placename" content={process.env.COUNTRY} />}
|
|
70
72
|
{process.env.ENABLE_PIXEL && (
|
|
71
73
|
<meta name="facebook-domain-verification" content={process.env.FBVERIFACTION} />
|
|
72
74
|
)}
|