Sha256: e1c51be98e7919de8346807af1665997f3026658b0e2a916d73c45dbb8e70acf

Contents?: true

Size: 978 Bytes

Versions: 57

Compression:

Stored size: 978 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[include.lang].post.read_time.prompt -}}
{% endcapture %}

<!-- return element -->
<span
  class="readtime"
  data-bs-toggle="tooltip"
  data-bs-placement="bottom"
  title="{{ words }} {{ site.data.locales[include.lang].post.words }}"
>
  <em>
    {{- read_time -}}
    {{ ' ' }}
    {{- site.data.locales[include.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

57 entries across 57 versions & 6 rubygems

Version Path
jekyll-theme-chirpy-7.1.1 _includes/read-time.html
jekyll-theme-chirpy-7.1.0 _includes/read-time.html
Han-theme-1.0.0 _includes/read-time.html
jekyll-theme-chirpy-6.5.5 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-4.0.0 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-4.0.0.pre.beta2 _includes/read-time.html
doc-theme-0.1.0 _includes/read-time.html
jekyll-theme-chirpy-6.5.3 _includes/read-time.html
jekyll-theme-chirpy-6.5.2 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.2.0 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta3 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta2 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta1 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.1.4 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.1.2 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.1.1 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.1.0 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.0.1 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-3.0.0 _includes/read-time.html
jekyll-theme-chirpy-customized-upe-1.0.2 _includes/read-time.html