web/_includes/read-time.html

38 lines
978 B
HTML
Raw Permalink Normal View History

<!-- Calculate the post's reading time, and display the word count in tooltip -->
2021-07-20 20:01:09 +03:00
{% assign words = include.content | strip_html | number_of_words: 'auto' %}
2020-12-17 10:17:21 +03:00
<!-- words per minute -->
2021-07-20 20:01:09 +03:00
{% assign wpm = 180 %}
{% assign min_time = 1 %}
{% assign read_time = words | divided_by: wpm %}
2020-12-17 10:17:21 +03:00
{% unless read_time > 0 %}
{% assign read_time = min_time %}
2020-12-17 10:17:21 +03:00
{% endunless %}
2021-07-20 20:01:09 +03:00
{% capture read_prompt %}
{{- site.data.locales[include.lang].post.read_time.prompt -}}
2021-07-20 20:01:09 +03:00
{% endcapture %}
2020-12-17 10:17:21 +03:00
<!-- return element -->
<span
class="readtime"
data-bs-toggle="tooltip"
data-bs-placement="bottom"
title="{{ words }} {{ site.data.locales[include.lang].post.words }}"
>
<em>
{{- read_time -}}
{{ ' ' }}
{{- site.data.locales[include.lang].post.read_time.unit -}}
</em>
2021-07-20 20:01:09 +03:00
{%- if include.prompt -%}
{%- assign _prompt_words = read_prompt | number_of_words: 'auto' -%}
{%- unless _prompt_words > 1 -%}{{ ' ' }}{%- endunless -%}
{{ read_prompt }}
2021-07-20 20:01:09 +03:00
{%- endif -%}
2020-12-17 10:17:21 +03:00
</span>