Template:License: Difference between revisions

Created page with "<templatestyles src="Template:License/styles.css" />{{#switch: {{{1|}}} | cc-by = <table class="mw-license-box mw-license-cc-by"><tr> <td class="mw-license-badge">CC<br/>BY</td> <td class="mw-license-desc">[https://creativecommons.org/licenses/by/4.0/ CC BY 4.0] — Free to share and adapt with attribution.</td> </tr></table> | cc-by-sa = <table class="mw-license-box mw-license-cc-by-sa"><tr> <td class="mw-license-badge">CC<br/>BY-SA</td> <td class="mw-license-desc">[htt..."
 
m Explain the options
 
(One intermediate revision by the same user not shown)
Line 44: Line 44:
}}<noinclude>
}}<noinclude>
== Usage ==
== Usage ==
<pre>{{License|cc-by}}</pre>
Add <code><nowiki>{{License|cc-by-sa}}</nowiki></code> (or any variant below) to the top of a page to display a floating license box.
Valid values: <code>cc-by</code>, <code>cc-by-sa</code>, <code>cc-by-nc</code>, <code>cc-by-nc-sa</code>, <code>cc-by-nd</code>, <code>cc-by-nc-nd</code>, <code>cc0</code>, <code>arr</code>
 
== Available licenses ==
{| class="wikitable"
! Code !! Full name !! Description
|-
| <code>cc-by</code> || [https://creativecommons.org/licenses/by/4.0/ CC BY 4.0] || Free to share and adapt for any purpose, including commercially, as long as you give attribution.
|-
| <code>cc-by-sa</code> || [https://creativecommons.org/licenses/by-sa/4.0/ CC BY-SA 4.0] || Same as CC BY, but derivatives must be shared under the same license (copyleft).
|-
| <code>cc-by-nc</code> || [https://creativecommons.org/licenses/by-nc/4.0/ CC BY-NC 4.0] || Share and adapt with attribution, but not for commercial purposes.
|-
| <code>cc-by-nc-sa</code> || [https://creativecommons.org/licenses/by-nc-sa/4.0/ CC BY-NC-SA 4.0] || Non-commercial use only, with attribution, and derivatives under the same license.
|-
| <code>cc-by-nd</code> || [https://creativecommons.org/licenses/by-nd/4.0/ CC BY-ND 4.0] || Redistribution with attribution is allowed, but no derivatives or adaptations.
|-
| <code>cc-by-nc-nd</code> || [https://creativecommons.org/licenses/by-nc-nd/4.0/ CC BY-NC-ND 4.0] || Non-commercial redistribution with attribution only; no derivatives.
|-
| <code>cc0</code> || [https://creativecommons.org/publicdomain/zero/1.0/ CC0 1.0] || Public domain dedication — no rights reserved, maximum freedom for reuse.
|-
| <code>arr</code> || All rights reserved || Standard copyright; no reuse without explicit permission.
|}
 
<templatedata>
{
    "description": "Displays a license notice box for the page, styled like Babel boxes.",
    "params": {
        "1": {
            "label": "License",
            "description": "The license identifier for this page.",
            "type": "string",
            "required": true,
            "suggestedvalues": [
                "cc-by",
                "cc-by-sa",
                "cc-by-nc",
                "cc-by-nc-sa",
                "cc-by-nd",
                "cc-by-nc-nd",
                "cc0",
                "arr"
            ],
            "example": "cc-by-sa"
        }
    },
    "format": "inline"
}
</templatedata>
</noinclude>
</noinclude>