From d401bd6651481c9e5a1fe626724d80bf7d3babed Mon Sep 17 00:00:00 2001 From: kreafox Date: Tue, 23 May 2023 11:04:12 +0300 Subject: [PATCH 01/11] feat(blocks): add body class option in layout settings block --- src/components/manage/Blocks/LayoutSettings/schema.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/manage/Blocks/LayoutSettings/schema.js b/src/components/manage/Blocks/LayoutSettings/schema.js index 79d1971a..4b553f17 100644 --- a/src/components/manage/Blocks/LayoutSettings/schema.js +++ b/src/components/manage/Blocks/LayoutSettings/schema.js @@ -15,7 +15,7 @@ export const EditSchema = () => { { id: 'default', title: 'Default', - fields: ['layout_size'], + fields: ['layout_size', 'body_class'], }, ], required: [], @@ -26,6 +26,10 @@ export const EditSchema = () => { actions: Object.keys(ALIGN_INFO_MAP), actionsInfoMap: ALIGN_INFO_MAP, }, + body_class: { + title: 'Body class', + choices: [['homepage-inverse', 'Homepage inverse']], + }, }, }; }; From 979ed1eae9253735ad20c4558c021a1a0ec267d6 Mon Sep 17 00:00:00 2001 From: kreafox Date: Tue, 23 May 2023 11:42:58 +0300 Subject: [PATCH 02/11] feat(blocks): add homepage class in layout settings block --- src/components/manage/Blocks/LayoutSettings/schema.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/manage/Blocks/LayoutSettings/schema.js b/src/components/manage/Blocks/LayoutSettings/schema.js index 4b553f17..b5849804 100644 --- a/src/components/manage/Blocks/LayoutSettings/schema.js +++ b/src/components/manage/Blocks/LayoutSettings/schema.js @@ -28,7 +28,10 @@ export const EditSchema = () => { }, body_class: { title: 'Body class', - choices: [['homepage-inverse', 'Homepage inverse']], + choices: [ + ['homepage', 'Homepage'], + ['homepage-inverse', 'Homepage inverse'], + ], }, }, }; From c3b01f60b84ccc8b4ae6446a2b607615a3546ceb Mon Sep 17 00:00:00 2001 From: kreafox Date: Tue, 23 May 2023 12:03:47 +0300 Subject: [PATCH 03/11] change(blocks): remove restriction in layout settings block --- src/components/manage/Blocks/LayoutSettings/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/manage/Blocks/LayoutSettings/index.js b/src/components/manage/Blocks/LayoutSettings/index.js index 34f165cc..0debcbf1 100644 --- a/src/components/manage/Blocks/LayoutSettings/index.js +++ b/src/components/manage/Blocks/LayoutSettings/index.js @@ -12,9 +12,7 @@ export default (config) => { view: LayoutSettingsView, edit: LayoutSettingsEdit, schema: BlockSettingsSchema, - restricted: ({ properties }) => { - return !!properties['@type']; - }, + restricted: false, mostUsed: true, blockHasOwnFocusManagement: true, sidebarTab: 1, From 48aa9d8e8dd45bd1ca0a1a63b579ed3db77e7463 Mon Sep 17 00:00:00 2001 From: kreafox Date: Tue, 23 May 2023 14:50:57 +0300 Subject: [PATCH 04/11] Bump to 1.15.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b782b0b7..dcdf653d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-eea-website-theme", - "version": "1.14.0", + "version": "1.15.0", "description": "@eeacms/volto-eea-website-theme: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 31c901d75d509d011269dee4224e0bec6b12bfe4 Mon Sep 17 00:00:00 2001 From: David Ichim Date: Tue, 23 May 2023 17:38:07 +0300 Subject: [PATCH 05/11] change(layout): removed most used from layout block --- src/components/manage/Blocks/LayoutSettings/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/manage/Blocks/LayoutSettings/index.js b/src/components/manage/Blocks/LayoutSettings/index.js index 0debcbf1..423546b8 100644 --- a/src/components/manage/Blocks/LayoutSettings/index.js +++ b/src/components/manage/Blocks/LayoutSettings/index.js @@ -13,7 +13,7 @@ export default (config) => { edit: LayoutSettingsEdit, schema: BlockSettingsSchema, restricted: false, - mostUsed: true, + mostUsed: false, blockHasOwnFocusManagement: true, sidebarTab: 1, }; From 1e26a94a01fcbc44f6e07c6fa60e5e43f9545788 Mon Sep 17 00:00:00 2001 From: David Ichim Date: Tue, 23 May 2023 17:49:12 +0300 Subject: [PATCH 06/11] change(layout-block): removed css that hid the layout settings - we can use the block for other layout settings such as selecting the homepage class on the body --- .../manage/Blocks/LayoutSettings/LayoutSettingsEdit.jsx | 1 - src/components/manage/Blocks/LayoutSettings/edit.less | 4 ---- 2 files changed, 5 deletions(-) delete mode 100644 src/components/manage/Blocks/LayoutSettings/edit.less diff --git a/src/components/manage/Blocks/LayoutSettings/LayoutSettingsEdit.jsx b/src/components/manage/Blocks/LayoutSettings/LayoutSettingsEdit.jsx index b06d1b6c..6ad330d3 100644 --- a/src/components/manage/Blocks/LayoutSettings/LayoutSettingsEdit.jsx +++ b/src/components/manage/Blocks/LayoutSettings/LayoutSettingsEdit.jsx @@ -2,7 +2,6 @@ import React from 'react'; import { EditSchema } from './schema'; import { BlockDataForm, SidebarPortal } from '@plone/volto/components'; import LayoutSettingsView from './LayoutSettingsView'; -import './edit.less'; const LayoutSettingsEdit = (props) => { const schema = EditSchema(); diff --git a/src/components/manage/Blocks/LayoutSettings/edit.less b/src/components/manage/Blocks/LayoutSettings/edit.less deleted file mode 100644 index 1c1cd33f..00000000 --- a/src/components/manage/Blocks/LayoutSettings/edit.less +++ /dev/null @@ -1,4 +0,0 @@ -#page-edit .block-editor-layoutSettings, -#page-add .block-editor-layoutSettings { - display: none; -} From b79680dd4162a0ee316489d15c76eab274888f74 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Fri, 26 May 2023 18:12:46 +0300 Subject: [PATCH 07/11] other: group restricted blocks in an array --- src/index.js | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/index.js b/src/index.js index 0add275f..238cfbd6 100644 --- a/src/index.js +++ b/src/index.js @@ -16,6 +16,12 @@ import voltoCustomMiddleware from './middleware/voltoCustom'; import okMiddleware from './middleware/ok'; import installSlate from './slate'; +const restrictedBlocks = [ + '__grid', // Grid/Teaser block (kitconcept) + 'imagesGrid', + 'teaser', +]; + const applyConfig = (config) => { // EEA specific settings config.settings.eea = { @@ -34,6 +40,13 @@ const applyConfig = (config) => { // Disable tags on View config.settings.showTags = false; + // Disable some blocks + restrictedBlocks.forEach((block) => { + if (config.blocks.blocksConfig[block]) { + config.blocks.blocksConfig[block].restricted = true; + } + }); + // Enable Title block config.blocks.blocksConfig.title.restricted = false; @@ -206,17 +219,6 @@ const applyConfig = (config) => { }, ]; - // Grid/Teaser block (kitconcept) - if (config.blocks.blocksConfig.__grid) { - config.blocks.blocksConfig.__grid.restricted = true; - } - if (config.blocks.blocksConfig.imagesGrid) { - config.blocks.blocksConfig.imagesGrid.restricted = true; - } - if (config.blocks.blocksConfig.teaser) { - config.blocks.blocksConfig.teaser.restricted = true; - } - // layout settings config = [installLayoutSettingsBlock].reduce( (acc, apply) => apply(acc), From 370dcbfbf1a8135ce7b1b3b271b004552a631837 Mon Sep 17 00:00:00 2001 From: valentinab25 Date: Thu, 1 Jun 2023 12:17:18 +0300 Subject: [PATCH 08/11] chore: [JENKINS] Deprecate circularity website --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4cec6d27..e91ceed8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { environment { GIT_NAME = "volto-eea-website-theme" NAMESPACE = "@eeacms" - SONARQUBE_TAGS = "volto.eea.europa.eu,demo-www.eea.europa.eu,prod-www.eea.europa.eu,circularity.eea.europa.eu,climate-adapt.eea.europa.eu,climate-advisory-board.devel4cph.eea.europa.eu,climate-advisory-board.europa.eu,www.eea.europa.eu-en" + SONARQUBE_TAGS = "volto.eea.europa.eu,demo-www.eea.europa.eu,prod-www.eea.europa.eu,climate-adapt.eea.europa.eu,climate-advisory-board.devel4cph.eea.europa.eu,climate-advisory-board.europa.eu,www.eea.europa.eu-en" DEPENDENCIES = "" VOLTO = "" } From ab52ee818d4343add1ac641b1a7a2e1c76ce0946 Mon Sep 17 00:00:00 2001 From: Teodor Voicu <104510089+tedw87@users.noreply.github.com> Date: Thu, 1 Jun 2023 19:14:24 +0300 Subject: [PATCH 09/11] feat: can disable all actions from footer - refs #253198 --- .../volto/components/theme/Footer/Footer.jsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/customizations/volto/components/theme/Footer/Footer.jsx b/src/customizations/volto/components/theme/Footer/Footer.jsx index d15f2730..4305a40d 100644 --- a/src/customizations/volto/components/theme/Footer/Footer.jsx +++ b/src/customizations/volto/components/theme/Footer/Footer.jsx @@ -8,6 +8,7 @@ import { useSelector, shallowEqual } from 'react-redux'; import { flattenToAppURL } from '@plone/volto/helpers'; import EEAFooter from '@eeacms/volto-eea-design-system/ui/Footer/Footer'; import config from '@plone/volto/registry'; +import isArray from 'lodash/isArray'; const Footer = () => { const { eea } = config.settings; @@ -28,7 +29,7 @@ const Footer = () => { shallowEqual, ); // ZMI > portal_actions > footer_actions - const actions = footerActions.length + const actions = isArray(footerActions) ? footerActions.map((action) => ({ title: action.title, link: flattenToAppURL(action.url), @@ -36,7 +37,7 @@ const Footer = () => { : eea.footerOpts.actions; // ZMI > portal_actions > copyright_actions - const copyright = copyrightActions.length + const copyright = isArray(copyrightActions) ? copyrightActions.map((action) => ({ title: action.title, site: action.title, @@ -45,7 +46,7 @@ const Footer = () => { : eea.footerOpts.copyright; // ZMI > portal_actions > social_actions - const social = socialActions.length + const social = isArray(socialActions) ? socialActions.map((action) => ({ name: action.id, icon: action.icon, @@ -54,7 +55,7 @@ const Footer = () => { : eea.footerOpts.social; // ZMI > portal_actions > contact_actions - const contacts = contactActions.length + const contacts = isArray(contactActions) ? contactActions.map((action, idx) => ({ text: action.title, icon: action.icon, From aa38e4444f12cab2f80647774b3e4933053fade6 Mon Sep 17 00:00:00 2001 From: nileshgulia1 Date: Fri, 2 Jun 2023 14:37:33 +0530 Subject: [PATCH 10/11] change(title): use portal type_title instead @type refs151851 --- src/components/theme/Banner/View.jsx | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/src/components/theme/Banner/View.jsx b/src/components/theme/Banner/View.jsx index 08b88d8b..92f2a5bb 100644 --- a/src/components/theme/Banner/View.jsx +++ b/src/components/theme/Banner/View.jsx @@ -3,11 +3,9 @@ import { compose } from 'redux'; import { connect } from 'react-redux'; import { withRouter } from 'react-router'; import { defineMessages, injectIntl } from 'react-intl'; -import { startCase } from 'lodash'; -import qs from 'querystring'; +import startCase from 'lodash/startCase'; import { Icon } from 'semantic-ui-react'; import Popup from '@eeacms/volto-eea-design-system/ui/Popup/Popup'; -import { flattenToAppURL } from '@plone/volto/helpers'; import config from '@plone/volto/registry'; import Banner from '@eeacms/volto-eea-design-system/ui/Banner/Banner'; import { @@ -62,7 +60,7 @@ const Title = ({ config = {}, properties }) => { }; const View = (props) => { - const { banner = {}, intl, location, types = [] } = props; + const { banner = {}, intl } = props; const metadata = props.metadata || props.properties; const popupRef = useRef(null); const { @@ -81,11 +79,6 @@ const View = (props) => { const copyrightPrefix = config.blocks.blocksConfig.title.copyrightPrefix || ''; - // Set query parameters - const parameters = useMemo( - () => qs.parse(location.search.replace('?', '')) || {}, - [location], - ); // Set dates const getDate = useCallback( (hidden, key) => { @@ -109,18 +102,7 @@ const View = (props) => { // Set image source const image = getImageSource(metadata['image']); // Get type - const type = useMemo(() => { - return ( - types?.filter?.( - (type) => - flattenToAppURL(type['@id']) === - `/@types/${metadata['@type'] || parameters.type}`, - )[0]?.title || - friendlyId(metadata['@type']) || - metadata['@type'] || - parameters.type - ); - }, [types, metadata, parameters]); + const type = metadata.type_title || friendlyId(metadata['@type']); return ( From 7544bc72b1f678b116c5a34e0dd24534dba8c0a3 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 2 Jun 2023 09:19:02 +0000 Subject: [PATCH 11/11] Automated release 1.15.0 --- CHANGELOG.md | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 854ce9bb..1da26966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +### [1.15.0](https://github.com/eea/volto-eea-website-theme/compare/1.14.1...1.15.0) - 2 June 2023 + +#### :rocket: New Features + +- feat: can disable all actions from footer - refs #253198 [Teodor Voicu - [`ab52ee8`](https://github.com/eea/volto-eea-website-theme/commit/ab52ee818d4343add1ac641b1a7a2e1c76ce0946)] +- feat(blocks): add body class option in layout settings block #138 from eea/layout-body-class [ichim-david - [`4409d1c`](https://github.com/eea/volto-eea-website-theme/commit/4409d1c7416ad143eafe578d55c2c9ef70433879)] +- feat(blocks): add homepage class in layout settings block [kreafox - [`979ed1e`](https://github.com/eea/volto-eea-website-theme/commit/979ed1eae9253735ad20c4558c021a1a0ec267d6)] +- feat(blocks): add body class option in layout settings block [kreafox - [`d401bd6`](https://github.com/eea/volto-eea-website-theme/commit/d401bd6651481c9e5a1fe626724d80bf7d3babed)] + +#### :nail_care: Enhancements + +- change(title): use portal type_title instead @type refs151851 [nileshgulia1 - [`aa38e44`](https://github.com/eea/volto-eea-website-theme/commit/aa38e4444f12cab2f80647774b3e4933053fade6)] +- change(layout-block): removed css that hid the layout settings [David Ichim - [`1e26a94`](https://github.com/eea/volto-eea-website-theme/commit/1e26a94a01fcbc44f6e07c6fa60e5e43f9545788)] +- change(layout): removed most used from layout block [David Ichim - [`31c901d`](https://github.com/eea/volto-eea-website-theme/commit/31c901d75d509d011269dee4224e0bec6b12bfe4)] +- change(blocks): remove restriction in layout settings block [kreafox - [`c3b01f6`](https://github.com/eea/volto-eea-website-theme/commit/c3b01f60b84ccc8b4ae6446a2b607615a3546ceb)] + +#### :house: Internal changes + + +#### :hammer_and_wrench: Others + +- other: group restricted blocks in an array [Miu Razvan - [`b79680d`](https://github.com/eea/volto-eea-website-theme/commit/b79680dd4162a0ee316489d15c76eab274888f74)] +- Bump to 1.15.0 [kreafox - [`48aa9d8`](https://github.com/eea/volto-eea-website-theme/commit/48aa9d8e8dd45bd1ca0a1a63b579ed3db77e7463)] ### [1.14.1](https://github.com/eea/volto-eea-website-theme/compare/1.14.0...1.14.1) - 22 May 2023 #### :rocket: New Features @@ -154,7 +177,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`6c5e2f8`](https://github.com/eea/volto-eea-website-theme/commit/6c5e2f80456e2061d9e9c15fd0a0b91b9ac70568)] ### [1.9.1](https://github.com/eea/volto-eea-website-theme/compare/1.9.0...1.9.1) - 28 February 2023 #### :bug: Bug Fixes @@ -301,7 +323,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - For some reasons types is a string [Alin Voinea - [`3769a09`](https://github.com/eea/volto-eea-website-theme/commit/3769a0981181d5b633f3498daebbe96be8b4b833)] - Fix(redirect): o.filter - refs #157627 [Alin Voinea - [`deb23da`](https://github.com/eea/volto-eea-website-theme/commit/deb23da846444cc96539697fd798429ae0abe89e)] -- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`f1fffc5`](https://github.com/eea/volto-eea-website-theme/commit/f1fffc5db96725440863d545580b4e76cce4b796)] ### [1.5.0](https://github.com/eea/volto-eea-website-theme/compare/1.4.2...1.5.0) - 9 January 2023 #### :hammer_and_wrench: Others @@ -335,7 +356,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.4.0 [Alin Voinea - [`bd42a0d`](https://github.com/eea/volto-eea-website-theme/commit/bd42a0d26e928cac5d99933194755da3db06b341)] - bump version to use as volto-eea-design-system [David Ichim - [`f4be047`](https://github.com/eea/volto-eea-website-theme/commit/f4be047328b46399b03b612d378b18aaf82e7dc1)] -- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`9b7cfef`](https://github.com/eea/volto-eea-website-theme/commit/9b7cfefb4d34fc1c948015e491feb370f9795bd8)] - test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`df252a9`](https://github.com/eea/volto-eea-website-theme/commit/df252a9bfed0bb86cadf53c59dd1603b1e2cd822)] ### [1.3.2](https://github.com/eea/volto-eea-website-theme/compare/1.3.1...1.3.2) - 16 December 2022 @@ -345,7 +365,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`a43c658`](https://github.com/eea/volto-eea-website-theme/commit/a43c658a7920c8df95e763b9a637f38ce77eba2c)] - Better razzle.config [Tiberiu Ichim - [`81dbf48`](https://github.com/eea/volto-eea-website-theme/commit/81dbf48815fb27facb4f82c9b764540fdf188b2e)] - Better razzle.config [Tiberiu Ichim - [`7bc9da2`](https://github.com/eea/volto-eea-website-theme/commit/7bc9da2cd837ab62a95cd29979cdd9b0055b7d67)] ### [1.3.1](https://github.com/eea/volto-eea-website-theme/compare/1.3.0...1.3.1) - 28 November 2022 @@ -356,7 +375,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- yarn 3 [Alin Voinea - [`ea7a709`](https://github.com/eea/volto-eea-website-theme/commit/ea7a7094945312776e9b6f44e371178603e92139)] ### [1.3.0](https://github.com/eea/volto-eea-website-theme/compare/1.2.0...1.3.0) - 22 November 2022 #### :rocket: New Features @@ -397,7 +415,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Add subsite class to body [Tiberiu Ichim - [`74d700f`](https://github.com/eea/volto-eea-website-theme/commit/74d700fbfd6249a8604762a7e4e49cce857db0f3)] - Add subsite info to header [Tiberiu Ichim - [`47daf8b`](https://github.com/eea/volto-eea-website-theme/commit/47daf8bb6374a1222040626b19d4154df7ba1b83)] - fix eslint [Miu Razvan - [`eb8d0a7`](https://github.com/eea/volto-eea-website-theme/commit/eb8d0a790bc70c0aae256c6ff35f63c4885f338e)] -- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`cc578a4`](https://github.com/eea/volto-eea-website-theme/commit/cc578a413b205a8e61e091fab3a88f94cedefc89)] ### [1.1.0](https://github.com/eea/volto-eea-website-theme/compare/1.0.0...1.1.0) - 28 October 2022 #### :nail_care: Enhancements @@ -445,7 +462,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`33b56ac`](https://github.com/eea/volto-eea-website-theme/commit/33b56acb13fbaf0c5b79e8fc6e13c4b699c79c90)] ### [0.7.3](https://github.com/eea/volto-eea-website-theme/compare/0.7.2...0.7.3) - 22 September 2022 #### :hammer_and_wrench: Others @@ -713,7 +729,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Header refactor, add custom logo #5 [ichim-david - [`4950235`](https://github.com/eea/volto-eea-website-theme/commit/49502358105437cfeac3b144e6d301cb59aa2346)] - Update footer.config with new publication card component [ichim-david - [`2e38e9a`](https://github.com/eea/volto-eea-website-theme/commit/2e38e9a417f835009d60c80d4eb4b30229f55e45)] - feature(breadcrumbs): implement eea-design-system breadcrumb as Volto component #32 #7 [ichim-david - [`181af41`](https://github.com/eea/volto-eea-website-theme/commit/181af4125ce2b9ddac56dab4723cb11c26633221)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`da8ceb6`](https://github.com/eea/volto-eea-website-theme/commit/da8ceb68ea68bfbc9504e48ccd4d68277f11ab9a)] - use breadcrumbs from eea-design-system [nileshgulia1 - [`db2f9e9`](https://github.com/eea/volto-eea-website-theme/commit/db2f9e9a4327420a3cce9a9903cd88549b129eab)] - Update theme.config [ichim-david - [`8eca4f4`](https://github.com/eea/volto-eea-website-theme/commit/8eca4f40397a4aeca6d39029c92db78968d37064)] - Added keyContent component to theme.config [ichim-david - [`d86f202`](https://github.com/eea/volto-eea-website-theme/commit/d86f202d0274d839487a88b51cae9a0e899beb23)] @@ -755,5 +770,4 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- yarn bootstrap [Alin Voinea - [`6995e9e`](https://github.com/eea/volto-eea-website-theme/commit/6995e9e091f21fdbbdffa8a44fc0e2c626f6d46a)] - Initial commit [Alin Voinea - [`6a9c03a`](https://github.com/eea/volto-eea-website-theme/commit/6a9c03a7cebe71ca87e82cf58c42904063e9d8d3)]