Use git last modified as date

This commit is contained in:
Lewis Dale 2024-03-07 14:51:31 +00:00
parent acdde1cbee
commit bf3d4fcf1b

View File

@ -1,5 +1,6 @@
module.exports = { module.exports = {
tags: ['posts'], tags: ['posts'],
layout: 'post.njk', layout: 'post.njk',
permalink: "/post/{{ data.slug if data.slug else title | slugify }}/" permalink: "/post/{{ data.slug if data.slug else title | slugify }}/",
date: "git Last Modified"
} }