Skip to content

Commit

Permalink
Bug fix : closing container tags now correctly ordered
Browse files Browse the repository at this point in the history
  • Loading branch information
J.Breizhtorm authored and J.Breizhtorm committed May 20, 2015
1 parent 452fbef commit 2d298bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/flickr_template.twig
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

{{image['title']}}

{% for title_container in title_containers %}
{% for title_container in title_containers|reverse %}
</{{title_container}}>
{% endfor %}

Expand All @@ -43,13 +43,13 @@
</a>
{% endif %}

{% for image_container in image_containers %}
{% for image_container in image_containers|reverse %}
</{{image_container}}>
{% endfor %}

{% endfor %}

{% for images_container in images_containers %}
{% for images_container in images_containers|reverse %}
</{{images_container|trim}}>
{% endfor %}

Expand Down

0 comments on commit 2d298bf

Please sign in to comment.