Add optional reading time to single _layout
This commit is contained in:
9
_includes/read-time.html
Normal file
9
_includes/read-time.html
Normal file
@ -0,0 +1,9 @@
|
||||
{% assign words = page.content | strip_html | number_of_words %}
|
||||
|
||||
{% if words < 180 %}
|
||||
{{ site.data.ui-text[site.locale].less_than }} 1 {{ site.data.ui-text[site.locale].minute_read }}
|
||||
{% elsif words < 360 %}
|
||||
1 {{ site.data.ui-text[site.locale].minute_read }}
|
||||
{% else %}
|
||||
{{ words | divided_by:site.words_per_minute }} {{ site.data.ui-text[site.locale].minutes_read }}
|
||||
{% endif %}
|
Reference in New Issue
Block a user