---
layout: default
permalink: licenses/
class: license-types
---
Licenses
Featured Licenses
{% for page in site.pages %}
{% if page.layout == "license" %}
{% if page.featured %}
{% comment %} always show this div, even w/o variations, for proper spacing {% endcomment %}
{% assign types = "required|permitted|forbidden" | split: "|" %}
{% for type in types %}
{{ type | capitalize }} |
{% endfor %}
{% for type in types %}
{% for req in page[type] %}
- {{ site.rules[type][req].label }}
{% endfor %}
|
{% endfor %}
View full GPL v2 license »
{% 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 and page.hide-from-license-list != true %}
{{ 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 %}