1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-25 21:23:03 +02:00
choosealicense.com/licenses.html

24 lines
688 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>
2014-07-31 18:36:56 +02:00
{% assign featured_licenses = site.licenses | where:"featured",true %}
{% for license in featured_licenses | sort: 'path' %}
2015-08-22 21:25:16 +02:00
{% include license-overview.html license=license %}
{% 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>
2015-08-06 17:56:18 +02:00
{% assign licenses = site.licenses | where:"featured",false | where:"hidden",false | where:"variant",false %}
2014-07-31 18:36:56 +02:00
{% for license in licenses %}
2015-08-22 21:25:16 +02:00
{% include license-overview.html license=license %}
{% endfor %}