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
|
|
|
|
2013-12-18 08:48:49 +01:00
|
|
|
{% assign sorted_pages = site.pages | sort: 'path' %}
|
|
|
|
|
|
|
|
{% for page in sorted_pages %}
|
2013-04-09 18:41:25 +02:00
|
|
|
{% if page.layout == "license" %}
|
|
|
|
{% if page.featured %}
|
2013-11-06 17:24:34 +01:00
|
|
|
{% include license-overview.html %}
|
2013-04-09 18:41:25 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% 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>
|
|
|
|
|
2013-12-18 08:48:49 +01:00
|
|
|
{% for page in sorted_pages %}
|
2013-04-09 18:41:25 +02:00
|
|
|
{% if page.layout == "license" %}
|
2013-10-29 00:10:43 +01:00
|
|
|
{% if page.featured != true and page.hide-from-license-list != true %}
|
2013-11-06 17:24:34 +01:00
|
|
|
{% include license-overview.html %}
|
2013-04-09 18:41:25 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2013-06-15 09:56:01 +02:00
|
|
|
{% endfor %}
|