Sha256: 52cd8f23f16a374d6bde327a0ff20e5f7cd4aaec91862593d4eb4c10bd879362

Contents?: true

Size: 533 Bytes

Versions: 4

Compression:

Stored size: 533 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 < 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

4 entries across 4 versions & 2 rubygems

Version Path
jekyll-theme-jam-0.1.2 _includes/read_time.html
jekyll-theme-jam-0.0.2 _includes/read_time.html
jekyll-theme-jam-0.0.1 _includes/read_time.html
ark-jekyll-theme-0.0.2 _includes/read_time.html