mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2026-05-08 01:38:43 +00:00
a5d38e7fbc
- Protect author's location privacy - Reduce locale configuration parameters
16 lines
430 B
HTML
16 lines
430 B
HTML
<!--
|
|
Date format snippet
|
|
See: ${JS_ROOT}/utils/timeago.js
|
|
-->
|
|
|
|
<em class="timeago{% if include.class %} {{ include.class }}{% endif %}"
|
|
data-ts="{{ include.date | date: '%s' }}"
|
|
{% if include.tooltip %}
|
|
data-toggle="tooltip" data-placement="bottom" data-tooltip-df="llll"
|
|
{% endif %}
|
|
{% if include.capitalize %}
|
|
data-capitalize="true"
|
|
{% endif %}>
|
|
{{ include.date | date: '%Y-%m-%d' }}
|
|
</em>
|