Skip to content

Commit

Permalink
Added CC License abbreviations
Browse files Browse the repository at this point in the history
  • Loading branch information
anti-mony committed Oct 20, 2020
1 parent 193c57c commit d93f9e5
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions frontend/data/licenses.js
Original file line number Diff line number Diff line change
@@ -1,40 +1,41 @@
const licenses = {
cco: {
title: "Creative Commons Zero v1.0 Universal",
title: "Creative Commons Zero v1.0 Universal (CCO)",
link: "https://creativecommons.org/publicdomain/zero/1.0/",
infographics: ["cc.svg", "zero.svg"],
},
cc_by: {
title: "Creative Commons Attribution 4.0 International License",
title: "Creative Commons Attribution 4.0 International License (CC BY)",
link: "https://creativecommons.org/licenses/by/4.0/",
infographics: ["cc.svg", "by.svg"],
},
cc_by_nc: {
title:
"Creative Commons Attribution NonCommercial 4.0 International License",
"Creative Commons Attribution NonCommercial 4.0 International License (CC BY-NC)",
link: "https://creativecommons.org/licenses/by-nc/4.0/",
infographics: ["cc.svg", "by.svg", "nc.svg"],
},
cc_by_sa: {
title: "Creative Commons Attribution ShareAlike 4.0 International License",
title:
"Creative Commons Attribution ShareAlike 4.0 International License (CC BY-SA)",
link: "https://creativecommons.org/licenses/by-sa/4.0/",
infographics: ["cc.svg", "by.svg", "sa.svg"],
},
cc_by_nd: {
title:
"Creative Commons Attribution NoDerivatives 4.0 International License",
"Creative Commons Attribution NoDerivatives 4.0 International License (CC BY-ND)",
link: "https://creativecommons.org/licenses/by-nd/4.0/",
infographics: ["cc.svg", "by.svg", "nd.svg"],
},
cc_by_nc_sa: {
title:
"Creative Commons Attribution NonCommercial ShareAlike 4.0 International License",
"Creative Commons Attribution NonCommercial ShareAlike 4.0 International License (CC BY-NC-SA)",
link: "https://creativecommons.org/licenses/by-nc-sa/4.0/",
infographics: ["cc.svg", "by.svg", "nc.svg", "sa.svg"],
},
cc_by_nc_nd: {
title:
"Creative Commons Attribution NonCommercial NoDerivatives 4.0 International License",
"Creative Commons Attribution NonCommercial NoDerivatives 4.0 International License (CC BY-NC-ND)",
link: "https://creativecommons.org/licenses/by-nc-nd/4.0/",
infographics: ["cc.svg", "by.svg", "nc.svg", "nd.svg"],
},
Expand Down

0 comments on commit d93f9e5

Please sign in to comment.