Zero Counter {% include 'components/stats/zero-counter' %}
#
HTML
<div class="zero-counter" data-from="0" data-to="1000">
	<span class="zero-counter__value">1000</span>
	<span class="zero-counter__title">The title</span>
</div>
Twig
<div class="zero-counter" data-from="{{counter_from}}" data-to="{{counter_to}}">
	<span class="zero-counter__value">{{counter_to}}</span>
	<span class="zero-counter__title">{{counter_title}}</span>
</div>
{
    "counter_from": 0,
    "counter_to": 1000,
    "counter_title": "The title"
}
1000 The title