Skip to content

Commit 36c91db

Browse files
authored
feat: added correct legal info (#270)
* feat: added correct footer legal info added imprint and data protection principles to the footer * Revert "feat: added correct footer legal info" This reverts commit efafd04. * feat: added correct legal info * Revert "Revert "feat: added correct footer legal info"" This reverts commit abb5637.
1 parent 1fee0ee commit 36c91db

File tree

5 files changed

+45
-7
lines changed

5 files changed

+45
-7
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ This especially relates to the files in the directories `/source/fonts/`, `sourc
146146
147147
Contributions are very welcome, please refer to the [contribution guide](CONTRIBUTING.md).
148148
149+
## Third party acknowledgments – many kudos for that !!!
150+
151+
- [open privacy by opr.vc](https://opr.vc)
152+
149153
## Code of conduct
150154
151155
We as members, contributors, and leaders pledge to make participation in our

enterprise.patternlab-config.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,20 @@
144144
},
145145
"toolLinks": {
146146
"before": [],
147-
"after": []
147+
"after": [
148+
{
149+
"text": "Imprint",
150+
"url": "https://www.dbsystel.de/dbsystel-en/legal-3715942",
151+
"class": "",
152+
"icon": "help"
153+
},
154+
{
155+
"text": "Datenschutzerklärung",
156+
"url": "https://db-ui.github.io/datenschutzerklaerung.html",
157+
"class": "",
158+
"icon": "help"
159+
}
160+
]
148161
}
149162
}
150163
}

source/_patterns/01-elements/link/_link.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
{{#if disabled}} aria-disabled="true" tabindex="-1"{{/if }}
99
{{#if selected}} aria-selected="true"{{/if }}
1010
{{#if label}} aria-label="{{ label }}"{{/if }}
11+
{{#if lang }} lang="{{ lang }}"{{/if }}
1112
{{#if hreflang}} hreflang="{{ hreflang }}"{{/if }}
1213
{{#if target}} target="{{ target }}"{{/if }}
1314
{{#if current}} aria-current="{{ current }}"{{/if }}

source/_patterns/03-areas/03-footer/footer.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
{
22
"navItems": [
33
{
4-
"href": "#",
5-
"value": "Datenschutz"
4+
"href": "https://db-ui.github.io/datenschutzerklaerung.html",
5+
"value": "Datenschutzerklärung",
6+
"lang": "de",
7+
"hreflang": "de",
8+
"rel": "noopener noreferrer",
9+
"target": "_blank"
610
},
711
{
8-
"href": "#",
9-
"value": "Impressum"
12+
"href": "https://www.dbsystel.de/dbsystel-en/legal-3715942",
13+
"value": "Imprint",
14+
"rel": "noopener noreferrer",
15+
"target": "_blank"
1016
},
1117
{
1218
"href": "mailto:[email protected]",
13-
"value": "Kontakt"
19+
"value": "Contact"
1420
},
1521
{
1622
"href": "#",

source/_patterns/04-pages/intro.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,23 @@
7777
}
7878
],
7979
"navItems": [
80+
{
81+
"href": "https://db-ui.github.io/datenschutzerklaerung.html",
82+
"value": "Datenschutzerklärung",
83+
"lang": "de",
84+
"hreflang": "de",
85+
"rel": "noopener noreferrer",
86+
"target": "_blank"
87+
},
88+
{
89+
"href": "https://www.dbsystel.de/dbsystel-en/legal-3715942",
90+
"value": "Imprint",
91+
"rel": "noopener noreferrer",
92+
"target": "_blank"
93+
},
8094
{
8195
"href": "mailto:[email protected]",
82-
"value": "Kontakt"
96+
"value": "Contact"
8397
}
8498
]
8599
}

0 commit comments

Comments
 (0)