2013-04-09 18:41:25 +02:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
permalink: licenses/
|
|
|
|
class: license-types
|
|
|
|
---
|
|
|
|
|
|
|
|
<h1>Featured</h1>
|
|
|
|
|
|
|
|
{% for page in site.pages %}
|
|
|
|
{% if page.layout == "license" %}
|
|
|
|
{% if page.featured %}
|
|
|
|
<table class='license-rules'>
|
|
|
|
<tr>
|
|
|
|
<th class='name'>
|
|
|
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
|
|
|
</th>
|
|
|
|
<th class='summary'>
|
|
|
|
{{ page.description }} <a href="{{ page.permalink }}">View full license »</a>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{% assign types = "required|permitted|forbidden" | split: "|" %}
|
|
|
|
{% for type in types %}
|
|
|
|
<tr>
|
|
|
|
<td class="label">{{ type | capitalize }}</td>
|
|
|
|
<td>
|
|
|
|
<ul class="license-{{ type }}">
|
|
|
|
{% for req in page[type] %}
|
|
|
|
<li class="{{ req }}">{{ site.rules[type][req].label }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% 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>
|
|
|
|
|
|
|
|
{% for page in site.pages %}
|
|
|
|
{% if page.layout == "license" %}
|
|
|
|
{% if page.featured != true %}
|
|
|
|
<table class='license-rules'>
|
|
|
|
<tr>
|
|
|
|
<th class='name'>
|
|
|
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
|
|
|
</th>
|
|
|
|
<th class='summary'>
|
|
|
|
{{ page.description }} <a href="{{ page.permalink }}">View full license »</a>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{% assign types = "required|permitted|forbidden" | split: "|" %}
|
|
|
|
{% for type in types %}
|
|
|
|
<tr>
|
|
|
|
<td class="label">{{ type | capitalize }}</td>
|
|
|
|
<td>
|
|
|
|
<ul class="license-{{ type }}">
|
|
|
|
{% for req in page[type] %}
|
|
|
|
<li class="{{ req }}">{{ site.rules[type][req].label }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2013-06-15 09:56:01 +02:00
|
|
|
{% endfor %}
|