Sha256: 441f10c99722699acb7fa726993d72761b9466266546d4cb7e21f5825105a777

Contents?: true

Size: 684 Bytes

Versions: 5

Compression:

Stored size: 684 Bytes

Contents

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


{% if site.data.theme.text.words_per_minute %}
  {% if words < 180 %}
	  {{ site.data.theme.text.less_than | default: "less than" }} 1 {{ site.data.theme.text.minute_read | default: "min read" }}
	{% elsif words < 360 %}
	  1 {{ site.data.theme.text.minute_read | default: "min read" }}
	{% else %}
	  {{ words | divided_by:site.data.theme.text.words_per_minute }} {{ site.data.theme.text.minute_read | default: "min read" }}
	{% endif %}
{% else %}
  {{ site.data.theme.text.undefined_wpm }}
{% endif %}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
minimal-jekyll-theme-0.2.1 _includes/read_time.html
minimal-jekyll-theme-0.2.0 _includes/read_time.html
minimal-jekyll-theme-0.1.4 _includes/read_time.html
minimal-jekyll-theme-0.1.3 _includes/read_time.html
minimal-jekyll-theme-0.1.2 _includes/read_time.html