2013-04-09 12:41:25 -04:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
permalink: licenses/
|
|
|
|
class: license-types
|
2013-12-15 13:31:08 +02:00
|
|
|
title: Licenses
|
2013-04-09 12:41:25 -04:00
|
|
|
---
|
|
|
|
|
2016-01-26 13:42:29 -08:00
|
|
|
<h2>Featured licenses</h2>
|
2013-04-09 12:41:25 -04:00
|
|
|
|
2014-07-31 12:36:56 -04:00
|
|
|
{% assign featured_licenses = site.licenses | where:"featured",true %}
|
|
|
|
{% for license in featured_licenses | sort: 'path' %}
|
2015-08-22 15:25:16 -04:00
|
|
|
{% include license-overview.html license=license %}
|
2013-04-09 12:41:25 -04:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<h2>Other licenses</h2>
|
|
|
|
<p>
|
|
|
|
Some communities tend to have specific licenses preferred by the
|
2013-06-15 04:56:01 -03:00
|
|
|
community. For example, Perl developers often choose the Artistic License.
|
2013-04-09 12:41:25 -04:00
|
|
|
</p>
|
2015-08-06 11:56:18 -04:00
|
|
|
{% assign licenses = site.licenses | where:"featured",false | where:"hidden",false | where:"variant",false %}
|
2014-07-31 12:36:56 -04:00
|
|
|
{% for license in licenses %}
|
2015-08-22 15:25:16 -04:00
|
|
|
{% include license-overview.html license=license %}
|
2013-06-15 04:56:01 -03:00
|
|
|
{% endfor %}
|