Плохо
{%if condition %}
{{collection.title }}
{%endif%}
Хорошо
{% if condition %}
{{ collection.title }}
{% endif %}
Плохо
{% assign var = collection.price_min| plus: 0|round:0 %}
Хорошо
{% assign var = collection.price_min | plus: 0 | round: 0 %}
Плохо
{% if collection.subcollections.size > 0 %}Выводим подкатегории{% else %}Список подкатегорий пуст{% endif %}
Хорошо
{% if collection.subcollections.size > 0 %}
Выводим подкатегории
{% else %}
Список подкатегорий пуст
{% endif %}
Плохо
{% case tamplate %}
{% when 'product' %}
<!-- 1 -->
{% when 'index' %}
<!-- 2 -->
{% endcase %}
Хорошо
{% case tamplate %}
{% when 'product' %}
<!-- 1 -->
{% when 'index' %}
<!-- 2 -->
{% endcase %}
Плохо
{% assign new-variable="value" %}
{% include "mail-slider" %}
Хорошо
{% assign new_variable = "value" %}
{% include "mail_slider" %}
Плохо
<div class="snippet_class {% if snippet %}snippet_class--{{ snippet }}{% endif %}}">
<!-- -->
</div>
Хорошо
{% if snippet %}
{% capture snippet_mod %}snippet_class--{{ snippet }}{% endcapture %}
{% endif %}}
<div class="snippet_class {{ snippet_mod }}">
<!-- -->
</div>
Плохо
<script type="text/javascript">
$(function(){
$( '.js-slider--index' ).owlCarousel({
items: 1,
loop: true,
dots: false,
autoplay: {% if settings.index_slider-autoplay == '1' %}true{% else %}false{% endif %},
autoplayTimeout: {% if settings.index_slider-timeout %}{{ settings.index_slider-timeout }}
{% else %}{{ assign timeout = 5000 }}{% endif %},
});
});
</script>
Хорошо
{% if settings.index_slider-autoplay == '1' %}
{% assign is_autoplay = true %}
{% else %}
{% assign is_autoplay = false %}
{% endif %}
{% if settings.index_slider-timeout %}
{% assign timeout = settings.index_slider-timeout %}
{% else %}
{% assign timeout = 5000 %}
{% endif %}
<script type="text/javascript">
$(function(){
$( '.js-slider--index' ).owlCarousel({
items: 1,
loop: true,
dots: false,
autoplay: {{ is_autoplay }},
autoplayTimeout: {{ timeout }}
});
});
</script>
Плохо
<SECTION>
<p>Пример</p>
</SECTION>
Хорошо
<section>
<p>Пример</p>
</section>
Плохо
<a href=# class=link>Ссылка 1</a>
<a href="#" class='link'>Ссылка 2</a>
<a href='#' class="link">Ссылка 2</a>
Хорошо
<a href="#" class="link">Ссылка 1</a>
<a href="#" class="link">Ссылка 2</a>
Плохо
<section>
<p>Пример</p>
</section>
Хорошо
<section>
<p>Пример</p>
</section>
Плохо
<table>
<tr>
<td>Текст ячейкe</td>
</tr>
<tr>
<td>Текст ячейкe</td>
</tr>
</table>
Хорошо
<table>
<tr>
<td>Текст в ячейкe</td>
</tr>
<tr>
<td>Текст в ячейкe</td>
</tr>
</table>