- 修改(博客主目录)
/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
网友评论