-
Notifications
You must be signed in to change notification settings - Fork 66
Licensing Content
Utkarsh Verma edited this page Jan 11, 2019
·
3 revisions
Dream Plus allows users to license their content under the Creative Commons Licences. The license appears below the posts as a footer or just below the share card as shown above.
To use this feature for your content, all you're required to do is to state the license in your content's frontmatter.
---
...... # Rest of the frontmatter
# Example for BY-SA license
license: "by-sa"
---
Here are the values which are to be assigned to the license variable for their specific licenses.
Name | License | Value |
---|---|---|
Attribution | CC BY | by |
Attribution-ShareAlike | CC BY-SA | by-sa |
Attribution-NoDerivs | CC BY-ND | by-nd |
Attribution-NonCommercial | CC BY-NC | by-nc |
Attribution-NonCommercial-ShareAlike | CC BY-NC-SA | by-nc-sa |
Attribution-NonCommercial-NoDerivs | CC BY-NC-ND | by-nc-nd |
The values aren't case sensitive, therefore BY-SA
and by-sa
will both work.