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