[TASK] Add posibility for links DSGVO
This commit is contained in:
parent
100cf626a5
commit
3085c14c3b
10
config.js
10
config.js
@ -118,6 +118,16 @@ module.exports = function () {
|
|||||||
'site': 'ffrgb',
|
'site': 'ffrgb',
|
||||||
'name': 'Regensburg'
|
'name': 'Regensburg'
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
'linkList': [
|
||||||
|
{
|
||||||
|
'title': 'Impressum',
|
||||||
|
'href': '/verein/impressum/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'title': 'Datenschutz',
|
||||||
|
'href': '/verein/datenschutz/'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -36,6 +36,17 @@ define(['helper'], function (helper) {
|
|||||||
p.appendChild(stats);
|
p.appendChild(stats);
|
||||||
p.appendChild(document.createElement('br'));
|
p.appendChild(document.createElement('br'));
|
||||||
p.appendChild(timestamp);
|
p.appendChild(timestamp);
|
||||||
|
|
||||||
|
if (config.linkList) {
|
||||||
|
p.appendChild(document.createElement('br'));
|
||||||
|
config.linkList.forEach(function (link) {
|
||||||
|
var a = document.createElement('a');
|
||||||
|
a.innerText = link.title;
|
||||||
|
a.href = link.href;
|
||||||
|
p.appendChild(a);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
el.appendChild(p);
|
el.appendChild(p);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -17,6 +17,10 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.legend {
|
.legend {
|
||||||
|
a {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
&:not(:first-child) {
|
&:not(:first-child) {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
|
Loading…
Reference in New Issue
Block a user