Sha256: 141b5bd0479832db2d7f8d5d83238f4bd97a70a1ac121eb3caf631b7b1e8db47

Contents?: true

Size: 844 Bytes

Versions: 8

Compression:

Stored size: 844 Bytes

Contents

<!--
  Date format snippet
-->

{% assign tooltip_df = site.data.date_format.tooltip | default: '%a, %b %e, %Y, %l:%M %p %z' %}
{% assign post_long_df = site.data.date_format.post.long | default: '%b %e, %Y' %}
{% assign post_short_df = site.data.date_format.post.short | default: '%b %e' %}

<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

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-3.2.2 _includes/timeago.html
jekyll-theme-chirpy-3.2.1 _includes/timeago.html
jekyll-theme-chirpy-3.2.0 _includes/timeago.html
jekyll-theme-chirpy-3.1.1 _includes/timeago.html
jekyll-theme-chirpy-3.1.0 _includes/timeago.html
jekyll-theme-chirpy-3.0.3 _includes/timeago.html
jekyll-theme-chirpy-3.0.2 _includes/timeago.html
jekyll-theme-chirpy-3.0.1 _includes/timeago.html