Sha256: a628d1aa55bf02442787184749a39ece5a381b7796795cb3f0693672498b946a

Contents?: true

Size: 484 Bytes

Versions: 7

Compression:

Stored size: 484 Bytes

Contents

{% assign words_per_minute = 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 %}
  ~1 {{ site.data.theme.t.min_read | default: 'min read' }}
{% else %}
  {{ words | divided_by:words_per_minute }} {{ site.data.theme.t.min_read | default: 'min read' }}
{% endif %}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theme-basically-basic-1.4.5 _includes/read-time.html
jekyll-theme-basically-basic-1.4.4 _includes/read-time.html
jekyll-theme-basically-basic-1.4.3 _includes/read-time.html
jekyll-theme-basically-basic-1.4.2 _includes/read-time.html
jekyll-theme-basically-basic-1.4.1 _includes/read-time.html
jekyll-theme-basically-basic-1.4.0 _includes/read-time.html
jekyll-theme-basically-basic-1.0.0 _includes/read-time.html