Sha256: c70bd7eb5660f7db205c420ea4c55eea6f3246ee1f464c81769d72193022067e

Contents?: true

Size: 579 Bytes

Versions: 13

Compression:

Stored size: 579 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 %}

<!-- return element -->
<span class="readtime" data-toggle="tooltip" data-placement="bottom" title="{{ words }} words">
  {{- read_time -}}{{" "}}{{- site.data.label.read_time_unit | default: "min" -}}
</span>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-4.0.2 _includes/read-time.html
jekyll-theme-chirpy-4.0.1 _includes/read-time.html
jekyll-theme-chirpy-3.3.2 _includes/read-time.html
jekyll-theme-chirpy-3.3.1 _includes/read-time.html
jekyll-theme-chirpy-3.3.0 _includes/read-time.html
jekyll-theme-chirpy-3.2.2 _includes/read-time.html
jekyll-theme-chirpy-3.2.1 _includes/read-time.html
jekyll-theme-chirpy-3.2.0 _includes/read-time.html
jekyll-theme-chirpy-3.1.1 _includes/read-time.html
jekyll-theme-chirpy-3.1.0 _includes/read-time.html
jekyll-theme-chirpy-3.0.3 _includes/read-time.html
jekyll-theme-chirpy-3.0.2 _includes/read-time.html
jekyll-theme-chirpy-3.0.1 _includes/read-time.html