mirror of
https://github.com/GamingShitposting/SalaMuseoGames
synced 2025-02-24 15:47:43 +01:00
10 lines
243 B
HTML
10 lines
243 B
HTML
|
{% assign words = content | number_of_words %}
|
||
|
|
||
|
{% if words < 360 %}
|
||
|
{% assign totalMinutes = 1 %}
|
||
|
{% else %}
|
||
|
{% assign totalMinutes = words | divided_by:180 %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% assign minutesText = totalMinutes | append: ' min to read' %}
|