2013-04-09 18:41:25 +02:00
|
|
|
<div class='sidebar'>
|
|
|
|
|
|
|
|
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
|
|
|
<div class='how-to-apply callout'>
|
|
|
|
<h5>How to apply this license</h5>
|
|
|
|
<p>
|
2013-06-15 10:13:13 +02:00
|
|
|
{{ page.how | replace:"<<","[" | replace:">>","]" }}
|
2013-04-09 18:41:25 +02:00
|
|
|
</p>
|
|
|
|
{% if page.note %}
|
|
|
|
<p class="note">
|
|
|
|
<strong>Note: </strong> {{ page.note }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="source">
|
|
|
|
<a href="{{ page.source}}">Source</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="license-rules license-rules-sidebar">
|
|
|
|
|
|
|
|
{% assign types = "required|permitted|forbidden" | split: "|" %}
|
|
|
|
{% for type in types %}
|
|
|
|
<h3>{{ type | capitalize }}</h3>
|
|
|
|
<ul class="license-{{ type }}">
|
|
|
|
{% for req in page[type] %}
|
|
|
|
<li class="{{ req }}">{{ site.rules[type][req].label }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if page.using %}
|
|
|
|
<div class="projects-with-license">
|
|
|
|
<h3>Who's using this license?</h3>
|
|
|
|
<ul>
|
|
|
|
{% for using_hash in page.using %}
|
2013-04-16 20:10:15 +02:00
|
|
|
{% for using in using_hash %}
|
2013-04-16 20:11:22 +02:00
|
|
|
<li><a href="{{ using[1] }}" target="_blank">{{ using[0] }}</a></li>
|
2013-04-16 20:10:15 +02:00
|
|
|
{% endfor %}
|
2013-04-09 18:41:25 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div><!-- /sidebar -->
|