1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-01 08:03:02 +02:00
choosealicense.com/licenses.html

33 lines
751 B
HTML
Raw Normal View History

---
layout: default
permalink: licenses/
class: license-types
2013-12-15 12:31:08 +01:00
title: Licenses
---
<h2>Featured Licenses</h2>
2013-12-18 08:48:49 +01:00
{% assign sorted_pages = site.pages | sort: 'path' %}
{% for page in sorted_pages %}
{% if page.layout == "license" %}
{% if page.featured %}
{% include license-overview.html %}
{% 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>
2013-12-18 08:48:49 +01:00
{% for page in sorted_pages %}
{% if page.layout == "license" %}
2013-10-29 00:10:43 +01:00
{% if page.featured != true and page.hide-from-license-list != true %}
{% include license-overview.html %}
{% endif %}
{% endif %}
{% endfor %}