-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcopyright.js
More file actions
13 lines (12 loc) · 806 Bytes
/
copyright.js
File metadata and controls
13 lines (12 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
const html = `
<div class="footer__copyright--image">
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"></a>
</div>
<div class="footer__copyright--text">
<p>
Licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons BY-SA 4.0</a> License, if not stated otherwise. IBM Plex Sans is licensed under the <a rel="license" href="https://openfontlicense.org/open-font-license-official-text/">SIL Open Font License, Version 1.1</a>.<br />
Copyright © ${new Date().getFullYear()} NFDI4Chem. Built with Docusaurus.
</p>
</div>
`;
module.exports = html;