Sha256: 4fa260dbab43053e3931245c6038f71ae3fb7f862df03a2bcdfd09bcab6be9b5

Contents?: true

Size: 740 Bytes

Versions: 9

Compression:

Stored size: 740 Bytes

Contents

{% assign words_per_minute = page.words_per_minute | default: site.words_per_minute | default: 200 %}

{% if post.read_time %}
  {% assign words = post.content | strip_html | number_of_words %}
{% elsif page.read_time %}
  {% assign words = page.content | strip_html | number_of_words %}
{% endif %}

{% if words < words_per_minute %}
  {{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
{% elsif words == words_per_minute %}
  1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
{% else %}
  {{ words | divided_by:words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
{% endif %}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
minimal-mistakes-jekyll-4.19.3 _includes/read-time.html
minimal-mistakes-jekyll-4.19.2 _includes/read-time.html
minimal-mistakes-jekyll-4.19.1 _includes/read-time.html
minimal-mistakes-jekyll-4.19.0 _includes/read-time.html
minimal-mistakes-jekyll-4.18.1 _includes/read-time.html
minimal-mistakes-jekyll-4.18.0 _includes/read-time.html
minimal-mistakes-jekyll-4.17.2 _includes/read-time.html
minimal-mistakes-jekyll-4.17.1 _includes/read-time.html
minimal-mistakes-jekyll-4.17.0 _includes/read-time.html