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

Merge pull request #453 from github/for-no-pipe

remove | sort from for loops, avoid new(?) liquid warning
This commit is contained in:
Mike Linksvayer 2016-09-17 08:07:11 -07:00 committed by GitHub
commit da9e5def26

View File

@ -25,7 +25,8 @@ If you're here to choose a license, **[start from the home page](/)** to see a f
{% endfor %}
{% endfor %}
</tr>
{% for license in site.licenses | sort: 'path' %}
{% assign licenses = site.licenses sort: "path" %}
{% for license in licenses %}
<tr style="height: 3em"><th scope="row"><a href="{{ license.id }}">{{ license.title }}</a></th>
{% assign seen_tags = '' %}
{% for type in types %}
@ -76,7 +77,8 @@ If you're here to choose a license, **[start from the home page](/)** to see a f
<dt id="{{ req }}">{{ rule_obj.label }}</dt>
{% capture seen_tags %}{{ seen_tags | append:req }}{% endcapture %}
{% for t in types %}
{% for r in site.data.rules[t] | sort: "label" %}
{% assign rs = site.data.rules[t] | sort: "label" %}
{% for r in rs %}
{% if r.tag == req %}
<dd class="license-{{t}}"><span class="license-sprite"></span> {{ r.description }}</dd>
{% endif %}