This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps-site.git
The following commit(s) were added to refs/heads/main by this push:
new c96f117 Add link to apache license (#27)
c96f117 is described below
commit c96f1178b41b5279aee4751bd2c59fdb4825232a
Author: Leonard <[email protected]>
AuthorDate: Mon May 22 10:23:16 2023 +0200
Add link to apache license (#27)
---
theme.config.tsx | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/theme.config.tsx b/theme.config.tsx
index ee54d4e..df6c840 100644
--- a/theme.config.tsx
+++ b/theme.config.tsx
@@ -21,8 +21,20 @@ const config: DocsThemeConfig = {
docsRepositoryBase:
'https://github.com/apache/incubator-baremaps-site/blob/main/',
footer: {
- text:
- 'Copyright © ' + new Date().getFullYear() + ' Apache Software Foundation'
+ text: (
+ <span>
+ Copyright © {new Date().getFullYear()} Apache Software Foundation,
+ Licensed under the{' '}
+ <a
+ href="https://www.apache.org/licenses/LICENSE-2.0"
+ target="_blank"
+ style={{ textDecoration: 'underline' }}
+ >
+ Apache License, Version 2.0
+ </a>
+ .
+ </span>
+ )
},
sidebar: {
defaultMenuCollapseLevel: 1