---
layout: default
permalink: licenses/
class: license-types
---
Featured
{% for page in site.pages %}
{% if page.layout == "license" %}
{% if page.featured %}
{{ page.title }}
|
{{ page.description }} View full license »
|
{% assign types = "required|permitted|forbidden" | split: "|" %}
{% for type in types %}
{{ type | capitalize }} |
{% for req in page[type] %}
- {{ site.rules[type][req].label }}
{% endfor %}
|
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
Other licenses
Some communities tend to have specific licenses preferred by the
community. For example, Perl developers often choose the Artistic License.
{% for page in site.pages %}
{% if page.layout == "license" %}
{% if page.featured != true %}
{{ page.title }}
|
{{ page.description }} View full license »
|
{% assign types = "required|permitted|forbidden" | split: "|" %}
{% for type in types %}
{{ type | capitalize }} |
{% for req in page[type] %}
- {{ site.rules[type][req].label }}
{% endfor %}
|
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}