1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-28 22:53:04 +02:00
choosealicense.com/licenses.html
Benjamin J. Balter caa47fb00c First pass at Jekylification
* Move licenses to license template
* Move home / about to page template
* Move annotations to config file, included via annotations.js
* Move license metadata to YML Front matter
* Automate the presentation of license metadata
* Move sidebar to include
* Add _site to gitignore
2013-05-21 15:17:07 -07:00

73 lines
1.9 KiB
HTML

---
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
community. For example, PERL developers often choose the artistic license.
</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 %}
{% endfor %}