Skip to content
This repository has been archived by the owner on Feb 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #17 from shimultaleb/master
Browse files Browse the repository at this point in the history
Fix if order.
  • Loading branch information
mkoistinen committed Oct 14, 2015
2 parents 876075f + 11962d0 commit 9837758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aldryn_style/templates/aldryn_style/plugin.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% load cms_tags %}
{% spaceless %}
<{{ instance.tag_type }}{% if instance.id_name %} id="{{ instance.id_name }}"{% endif %}{% if instance.class_name %} class="{{ instance.class_name }}{% if instance.additional_class_names %} {{ instance.get_additional_class_names }}{% endif %}"{% endif %}>
<{{ instance.tag_type }}{% if instance.id_name %} id="{{ instance.id_name }}"{% endif %} class="{% if instance.class_name %}{{ instance.class_name }}{% endif %}{% if instance.additional_class_names %} {{ instance.get_additional_class_names }}{% endif %}">
{% for plugin in instance.child_plugin_instances %}
{% render_plugin plugin %}
{% endfor %}
</{{ instance.tag_type }}>
{% endspaceless %}
{% endspaceless %}

0 comments on commit 9837758

Please sign in to comment.