mirror of
https://github.com/github/choosealicense.com
synced 2024-11-04 18:58:50 +01:00
e98ec06a7d
fixes #196
24 lines
688 B
HTML
24 lines
688 B
HTML
---
|
|
layout: default
|
|
permalink: licenses/
|
|
class: license-types
|
|
title: Licenses
|
|
---
|
|
|
|
<h2>Featured licenses</h2>
|
|
|
|
{% assign featured_licenses = site.licenses | where:"featured",true %}
|
|
{% for license in featured_licenses | sort: 'path' %}
|
|
{% 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>
|
|
{% assign licenses = site.licenses | where:"featured",false | where:"hidden",false | where:"variant",false %}
|
|
{% for license in licenses %}
|
|
{% include license-overview.html license=license %}
|
|
{% endfor %}
|