Sha256: 9469774941b49f71aaab09ba08cd152373908b1a082d8957da33779b4669b488

Contents?: true

Size: 920 Bytes

Versions: 10

Compression:

Stored size: 920 Bytes

Contents

<!--
  Calculate the post's reading time, and display the word count in tooltip
 -->

{% assign words = include.content | strip_html | number_of_words: "auto" %}

<!-- words per minute  -->

{% assign wpm = 180 %}
{% assign min_time = 1 %}

{% assign read_time = words | divided_by: wpm %}

{% unless read_time > 0 %}
  {% assign read_time = min_time %}
{% endunless %}

{% capture read_prompt %}
  {{- site.data.locales[lang].post.read_time.prompt -}}
{% endcapture %}

<!-- return element -->
<span class="readtime" data-toggle="tooltip" data-placement="bottom"
  title="{{ words }} {{ site.data.locales[lang].post.words }}">
  <em>{{- read_time -}}{{" "}}{{- site.data.locales[lang].post.read_time.unit -}}</em>
  {%- if include.prompt -%}
    {%- assign _prompt_words = read_prompt | number_of_words: 'auto' -%}
    {%- unless _prompt_words > 1 -%}{{ " " }}{%- endunless -%}{{ read_prompt }}
  {%- endif -%}
</span>

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
jekyll-theme-chirpy-5.3.0 _includes/read-time.html
jekyll-theme-abd3lraouf-5.2.9 _includes/read-time.html
jekyll-theme-abd3lraouf-5.2.8 _includes/read-time.html
jekyll-theme-abd3lraouf-5.2.7 _includes/read-time.html
jekyll-theme-chirpy-5.2.1 _includes/read-time.html
jekyll-theme-chirpy-5.2.0 _includes/read-time.html
jekyll-theme-chirpy-5.1.0 _includes/read-time.html
jekyll-theme-chirpy-5.0.2 _includes/read-time.html
jekyll-theme-chirpy-5.0.1 _includes/read-time.html
jekyll-theme-chirpy-5.0.0 _includes/read-time.html