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

fix 'using' display in sidebar

This commit is contained in:
Aidan Feldman 2013-10-22 23:55:54 -07:00
parent a5b5d4ade7
commit 1b5debd6bf

View File

@ -36,10 +36,8 @@
<div class="projects-with-license"> <div class="projects-with-license">
<h3>Who's using this license?</h3> <h3>Who's using this license?</h3>
<ul> <ul>
{% for using_hash in page.using %} {% for using in page.using %}
{% for using in using_hash %} <li><a href="{{ using[1] }}" target="_blank">{{ using[0] }}</a></li>
<li><a href="{{ using[1] }}" target="_blank">{{ using[0] }}</a></li>
{% endfor %}
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>