a5d38e7fbc
- Protect author's location privacy - Reduce locale configuration parameters
15 lines
430 B
HTML
15 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>
|