docs/_includes/read_time.html

10 lines
287 B
HTML

<span class="reading-time" title="Estimated reading time">
<span class="reading-time-label">Estimated reading time: </span>
{% assign words = content | number_of_words %}
{% if words < 360 %}
1 minute
{% else %}
{{ words | divided_by:180 }} minutes
{% endif %}
</span>