Skip to content

Commit 4ae0870

Browse files
Copilotcubap
andauthored
Remove duplicate LICENSE-CONTENT file and update footer with license link (#348)
* Initial plan * Remove duplicate LICENSE-CONTENT file and update references Co-authored-by: cubap <1119165+cubap@users.noreply.github.com> * Remove LICENSE-CONTENT.md from exclude list I think this isn't needed with the dupe removed * Update footer to show Apache 2.0 license with link Co-authored-by: cubap <1119165+cubap@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: cubap <1119165+cubap@users.noreply.github.com> Co-authored-by: Patrick Cuba <cubap@slu.edu>
1 parent 9d7da5c commit 4ae0870

4 files changed

Lines changed: 6 additions & 16 deletions

File tree

LICENSE-CONTENT

Lines changed: 0 additions & 12 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ much but combined with a customized project list page, it could be a powerful to
7272

7373
Code: Apache License 2.0 — see [LICENSE](./LICENSE)
7474

75-
Content (documentation, images, transcriptions, and other non-code assets): Creative Commons Attribution 4.0 International — see [LICENSE-CONTENT](./LICENSE-CONTENT)
75+
Content (documentation, images, transcriptions, and other non-code assets): Creative Commons Attribution 4.0 International — see [LICENSE-CONTENT.md](./LICENSE-CONTENT.md)
7676

7777
If you redistribute or modify this project, please include these license files and preserve copyright notices.
7878

_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,3 @@ theme: jekyll-theme-modernist
1212
permalink: pretty
1313
plugins:
1414
- jekyll-redirect-from
15-
exclude:
16-
- LICENSE-CONTENT

components/gui/site/Footer.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class TpenFooter extends HTMLElement {
2222
footerContent.className = 'footer-content'
2323

2424
const p = document.createElement('p')
25-
p.innerHTML = `&copy; ${new Date().getFullYear()} TPEN. All rights reserved.`
25+
p.innerHTML = `&copy; ${new Date().getFullYear()} TPEN. Licensed under <a href="/LICENSE" target="_blank">Apache 2.0</a>.`
2626

2727
const nav = document.createElement('nav')
2828
nav.className = 'footer-nav'
@@ -81,6 +81,10 @@ class TpenFooter extends HTMLElement {
8181
.footer-nav a {
8282
text-decoration: none;
8383
}
84+
p a {
85+
color: var(--primary-color);
86+
text-decoration: underline;
87+
}
8488
img {
8589
mix-blend-mode: multiply;
8690
height: 100px;

0 commit comments

Comments
 (0)