@eeacms/volto-eea-website-theme 1.9.1 → 1.9.2

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
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ ### [1.9.2](https://github.com/eea/volto-eea-website-theme/compare/1.9.1...1.9.2) - 7 March 2023
8
+
9
+ #### :rocket: New Features
10
+
11
+ - feat(SEO): Add h1 to frontpage - refs #158717 [Alin Voinea - [`16bf24a`](https://github.com/eea/volto-eea-website-theme/commit/16bf24a70c9273d73a3b8bda18d29c23d172b497)]
12
+
13
+ #### :hammer_and_wrench: Others
14
+
15
+ - Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`6c5e2f8`](https://github.com/eea/volto-eea-website-theme/commit/6c5e2f80456e2061d9e9c15fd0a0b91b9ac70568)]
7
16
  ### [1.9.1](https://github.com/eea/volto-eea-website-theme/compare/1.9.0...1.9.1) - 28 February 2023
8
17
 
9
18
  #### :bug: Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-eea-website-theme",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "@eeacms/volto-eea-website-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -5,7 +5,6 @@
5
5
 
6
6
  import React from 'react';
7
7
  import PropTypes from 'prop-types';
8
-
9
8
  import { DefaultView } from '@plone/volto/components/';
10
9
 
11
10
  import { BodyClass } from '@plone/volto/helpers';
@@ -22,6 +21,7 @@ const HomePageInverseView = ({ content }) => {
22
21
  return hasBlocksData(content) ? (
23
22
  <>
24
23
  <BodyClass className="homepage homepage-inverse" />
24
+ <h1 className="hiddenStructure">{content.title}</h1>
25
25
  <DefaultView content={content} />
26
26
  </>
27
27
  ) : null;
@@ -5,7 +5,6 @@
5
5
 
6
6
  import React from 'react';
7
7
  import PropTypes from 'prop-types';
8
-
9
8
  import { DefaultView } from '@plone/volto/components/';
10
9
 
11
10
  import { BodyClass } from '@plone/volto/helpers';
@@ -22,6 +21,7 @@ const HomePageView = ({ content }) => {
22
21
  return hasBlocksData(content) ? (
23
22
  <>
24
23
  <BodyClass className="homepage" />
24
+ <h1 className="hiddenStructure">{content.title}</h1>
25
25
  <DefaultView content={content} />
26
26
  </>
27
27
  ) : null;