2022-06-21, 02:58 AM
<div> no local errado o que causa a apresentação do modulo no local errado
original:
{% endif %}</div>
</div>
{% if products %}
<h3>{{ text_related }}</h3>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4">
{% for product in products %}
<div class="col">{{ product }}</div>
{% endfor %}
</div>
{% endif %}
{% if tags %}
<p>{{ text_tags }}
{% for i in 0..tags|length %}
{% if i < (tags|length - 1) %}
<a href="{{ tags[i].href }}">{{ tags[i].tag }}</a>,
{% else %}
<a href="{{ tags[i].href }}">{{ tags[i].tag }}</a>
{% endif %}
{% endfor %}
</p>
{% endif %}
{{ content_bottom }}</div>
{{ column_right }}</div>
</div>
<script type="text/javascript"><!--
corrigido:
{% endif %}</div>
{% if products %}
<h3>{{ text_related }}</h3>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4">
{% for product in products %}
<div class="col">{{ product }}</div>
{% endfor %}
</div>
{% endif %}
{% if tags %}
<p>{{ text_tags }}
{% for i in 0..(tags|length - 1) %}
<a href="{{ tags[i].href }}">{{ tags[i].tag }}</a>{% if not loop.end %},{% endif %}
{% endfor %}
</p>
{% endif %}
{{ content_bottom }}</div>
{{ column_right }}</div>
</div>
</div>
<script type="text/javascript"><!--
original:
{% endif %}</div>
</div>
{% if products %}
<h3>{{ text_related }}</h3>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4">
{% for product in products %}
<div class="col">{{ product }}</div>
{% endfor %}
</div>
{% endif %}
{% if tags %}
<p>{{ text_tags }}
{% for i in 0..tags|length %}
{% if i < (tags|length - 1) %}
<a href="{{ tags[i].href }}">{{ tags[i].tag }}</a>,
{% else %}
<a href="{{ tags[i].href }}">{{ tags[i].tag }}</a>
{% endif %}
{% endfor %}
</p>
{% endif %}
{{ content_bottom }}</div>
{{ column_right }}</div>
</div>
<script type="text/javascript"><!--
corrigido:
{% endif %}</div>
{% if products %}
<h3>{{ text_related }}</h3>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4">
{% for product in products %}
<div class="col">{{ product }}</div>
{% endfor %}
</div>
{% endif %}
{% if tags %}
<p>{{ text_tags }}
{% for i in 0..(tags|length - 1) %}
<a href="{{ tags[i].href }}">{{ tags[i].tag }}</a>{% if not loop.end %},{% endif %}
{% endfor %}
</p>
{% endif %}
{{ content_bottom }}</div>
{{ column_right }}</div>
</div>
</div>
<script type="text/javascript"><!--