Files
.github
_data
_includes
analytics-providers
comments-providers
footer
head
search
analytics.html
archive-single.html
author-profile-custom-links.html
author-profile.html
breadcrumbs.html
browser-upgrade.html
category-list.html
comment.html
comments.html
documents-collection.html
feature_row
figure
footer.html
gallery
group-by-array
head.html
masthead.html
nav_list
page__date.html
page__hero.html
page__hero_video.html
page__taxonomy.html
paginator.html
post_pagination.html
posts-category.html
posts-tag.html
read-time.html
scripts.html
seo.html
sidebar.html
skip-links.html
social-share.html
tag-list.html
toc
toc.html
video
_layouts
_sass
assets
docs
test
.editorconfig
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
Gemfile
LICENSE
README.md
Rakefile
_config.yml
banner.js
index.html
minimal-mistakes-jekyll.gemspec
package-lock.json
package.json
screenshot-layouts.png
screenshot.png
staticman.yml
website/_includes/page__date.html
2020-06-02 22:22:56 -04:00

6 lines
634 B
HTML

{% if page.last_modified_at %}
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %-d, %Y" }}</time></p>
{% elsif page.date %}
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time></p>
{% endif %}