Skip to content

Commit

Permalink
fix 'using' display in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
afeld committed Oct 23, 2013
1 parent a5b5d4a commit 1b5debd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@ <h3>{{ type | capitalize }}</h3>
<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>
Expand Down

0 comments on commit 1b5debd

Please sign in to comment.