covid19-dashboard/_includes/reading_time.html

8 строки
241 B
HTML

<span class="read-time" title="Estimated read time">
{% assign words = content | strip_html | number_of_words %}
{% if words < 360 %}
1 min read
{% else %}
{{ words | divided_by:180 }} min read
{% endif %}
</span>