1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-01 16:13:02 +02:00
choosealicense.com/_includes/license-overview.html

56 lines
2.3 KiB
HTML
Raw Normal View History

2013-12-09 19:05:34 +01:00
<div class="license-family clearfix">
<div class="license-family-heading">
2013-11-18 23:48:32 +01:00
<h3 class="license-family-name"><a href="{{ page.permalink }}">{% if page.category %}{{ page.category }}{% else %}{{ page.title }}{% endif %}</a></h3>
<p class="license-family-description">{{ page.description }}</p>
</div>
<div class="license-details">
<div class="license-variations js-license-variations">
<!-- always show this div, even w/o variations, for proper spacing -->
2013-11-19 02:00:15 +01:00
{% if page.tab-slug %}
<ul class="nav-pills js-nav-pills">
2013-11-18 23:48:32 +01:00
{% for variation in site.pages %}
{% if variation.category and variation.category == page.category %}
2013-11-19 02:00:15 +01:00
<li{% if page.tab-slug == variation.tab-slug %} class="active"{% endif %}><a href="#{{ variation.tab-slug }}" data-selected-tab="variation-{{ variation.tab-slug }}">{{ variation.title }}</a></li>
2013-11-18 23:48:32 +01:00
{% endif %}
{% endfor %}
</ul>
2013-11-19 02:00:15 +01:00
{% endif %}
</div>
2013-11-18 23:48:32 +01:00
{% for variation in site.pages %}
{% if variation.category and variation.category == page.category %}
<div {% if variation.tab-slug %}id="{{ variation.tab-slug }}" {% endif %}class="variation-tab {% if variation.tab-slug %}variation-{{ variation.tab-slug }}{% endif %} js-variation-tab{% if page.tab-slug == variation.tab-slug %} active{% endif %}">
2013-12-10 08:48:49 +01:00
<table class="license-rules">
<tr>
{% assign types = "required|permitted|forbidden" | split: "|" %}
{% for type in types %}
<th class="label">{{ type | capitalize }}</th>
{% endfor %}
</tr>
<tr>
2013-11-30 02:57:35 +01:00
{% for type in types %}
<td>
<ul class="license-{{ type }}">
2013-12-10 08:48:49 +01:00
{% assign rules = site.rules[type] | sort: "label" %}
2013-11-30 02:57:35 +01:00
{% for rule_obj in rules %}
{% assign req = rule_obj.tag %}
2013-11-30 03:05:49 +01:00
{% if variation[type] contains req %}
<li class="{{ req }}">
<span class="license-sprite"></span>
{{ rule_obj.label }}
</li>
2013-11-30 02:57:35 +01:00
{% endif %}
{% endfor %}
</ul>
</td>
{% endfor %}
</tr>
</table>
2013-11-18 23:48:32 +01:00
<p class="small"><a href="{{ variation.permalink }}">View full {{ variation.title }} license »</a></p>
</div>
2013-11-18 23:48:32 +01:00
{% endif %}
{% endfor %}
</div>
</div>