1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 21:00:10 +01:00

Fix for "Who's Using" links

Liquid was not properly iterating through the using_hash.
Needed to add a second for loop.

See: http://stackoverflow.com/questions/8206869/iterate-over-hashes-in-liquid-templates
This commit is contained in:
Benjamin J. Balter 2013-04-16 14:10:15 -04:00 committed by Haacked
parent 885b0b72c6
commit fdc6142aeb

View File

@ -35,7 +35,9 @@
<h3>Who's using this license?</h3> <h3>Who's using this license?</h3>
<ul> <ul>
{% for using_hash in page.using %} {% for using_hash in page.using %}
<li><a href="{{ using_hash[1] }}">{{ using_hash[0] }}</a></li> {% for using in using_hash %}
<li><a href="{{ using[1] }}">{{ using[0] }}</a></li>
{% endfor %}
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>