Sha256: 9f93bcdda41121b34d20030518b96a5d2ad34da3011e040f0f8a39c1b2e28027

Contents?: true

Size: 915 Bytes

Versions: 7

Compression:

Stored size: 915 Bytes

Contents

<!--
  Date format snippet
  See: /assets/js/_utils/timeage.js
-->

{% assign tooltip_df = site.data.locales[lang].date_format.tooltip %}
{% assign post_long_df = site.data.locales[lang].date_format.post.long %}
{% assign post_short_df = site.data.locales[lang].date_format.post.short %}

{% if include.preposition %}
  {{ include.preposition }}
{% endif %}
<span class="timeago {% if include.class %}{{ include.class }}{% endif %}"
  {% if include.tooltip %}
    data-toggle="tooltip"
    data-placement="bottom"
    title="{{ include.date | date: tooltip_df }}"
  {% endif %}>
  {%- assign this_year = site.time | date: "%Y" -%}
  {%- assign post_year = include.date | date: "%Y" -%}
  {%- if post_year == this_year -%}
    {{ include.date | date: post_short_df }}
  {%- else -%}
    {{ include.date | date: post_long_df }}
  {%- endif -%}
  <i class="unloaded">{{ include.date | date_to_xmlschema }}</i>
</span>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-4.3.4 _includes/timeago.html
jekyll-theme-chirpy-4.3.3 _includes/timeago.html
jekyll-theme-chirpy-4.3.2 _includes/timeago.html
jekyll-theme-chirpy-4.3.1 _includes/timeago.html
jekyll-theme-chirpy-4.3.0 _includes/timeago.html
jekyll-theme-chirpy-4.2.1 _includes/timeago.html
jekyll-theme-chirpy-4.2.0 _includes/timeago.html