文末添加更新时间
·196 字·1 分钟
Blog
- 在根目录下打开
config.yml
最后位置添加代码
#显示文章更新时间:依次从文件git提交记录获取;从文件中lastmod字段获取;从文件修改时间获取
frontmatter:
lastmod: ['lastmod', ':git', ':fileModTime', ':default']
- 在
/themes/PaperMod/layouts/_default/
目录下,找到single.html
并打开
在合适的位置插入代码
{{ if ne (.Lastmod.Format "2022-07-17") (.Date.Format "2022-07-17") }}
<p style="text-align:right">
<b> 最后更新于: {{ .Lastmod.Year }} 年 {{ printf "%d" .Lastmod.Month }} 月 {{ .Lastmod.Day }} 日</b>
</p>
{{ end }}
*靠右对齐