1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 04:40:09 +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">
<h3>Who's using this license?</h3>
<ul>
{% for using_hash in page.using %}
{% for using in using_hash %}
<li><a href="{{ using[1] }}" target="_blank">{{ using[0] }}</a></li>
{% endfor %}
{% for using in page.using %}
<li><a href="{{ using[1] }}" target="_blank">{{ using[0] }}</a></li>
{% endfor %}
</ul>
</div>