Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
zeopix committed Sep 12, 2011
1 parent 89d8d18 commit 4bc056f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mii/GameBundle/Resources/views/Entrada/facebook.html.twig
Expand Up @@ -38,7 +38,7 @@
<ul class="niveles">
{% for level in normallevels %}

<li><a class="btn punch">{{ level.id }}</a></li>
<li><a class="btn punch" href="{{ path('playlevel', { 'level' : level.id }) }}">{{ level.id }}</a></li>
{% if loop.index is divisibleby(5) %}<div style="clear:both"></div>{% endif %}
{% endfor %}

Expand All @@ -50,7 +50,7 @@
<ul class="niveles">
{% for level in hardlevels %}

<li><a class="btn punch">{{ level.id }}</a></li>
<li><a class="btn punch" href="{{ path('playlevel', { 'level' : level.id }) }}">{{ level.id }}</a></li>
{% if loop.index is divisibleby(5) %}<div style="clear:both"></div>{% endif %}
{% endfor %}

Expand Down

0 comments on commit 4bc056f

Please sign in to comment.