Use git last modified as date
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 1m47s

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 = {
tags: ['posts'],
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"
}