2013-04-09 12:41:25 -04:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
permalink: licenses/
|
|
|
|
class: license-types
|
|
|
|
---
|
|
|
|
|
2013-11-05 14:22:51 -05:00
|
|
|
<h1>Licenses</h1>
|
|
|
|
|
|
|
|
<h2>Featured Licenses</h2>
|
2013-04-09 12:41:25 -04:00
|
|
|
|
|
|
|
{% for page in site.pages %}
|
|
|
|
{% if page.layout == "license" %}
|
|
|
|
{% if page.featured %}
|
2013-11-06 11:24:34 -05:00
|
|
|
{% include license-overview.html %}
|
2013-04-09 12:41:25 -04:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% 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>
|
|
|
|
|
|
|
|
{% for page in site.pages %}
|
|
|
|
{% if page.layout == "license" %}
|
2013-10-28 16:10:43 -07:00
|
|
|
{% if page.featured != true and page.hide-from-license-list != true %}
|
2013-11-06 11:24:34 -05:00
|
|
|
{% include license-overview.html %}
|
2013-04-09 12:41:25 -04:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2013-06-15 04:56:01 -03:00
|
|
|
{% endfor %}
|