- 修改(博客主目錄)
/themes/next/layout/_macro/post.swig
文件驹止,在<span class="post-time">...</span>
標簽后添加
{%if post.updated and post.updated > post.date%}
<span class="post-updated">
| {{ __('post.updated') }}
<time itemprop="dateUpdated" datetime="{{ moment(post.updated).format() }}" content="{{ date(post.updated, config.date_format) }}">
{{ date(post.updated, config.date_format) }}
</time>
</span>
{% endif %}
- 根據博客配置文件中的
language
參數修改對應的語言配置文件(博客主目錄)/themes/next/languages/zh_Hans.yml
post:
updated: 更新于
- 修改主題配置文件(博客主目錄)
/themes/next/_config.yml
,增加一行
display_updated: true
updated: 2018-01-01 12:00:00