I want to have a last modification date on some of my sites. I found this link https://www.andrewjstevens.com/posts/2021/03/last-modified-date-with-hugo/ for last modified and I tried to implement this in my handbook.md page. What I do wrong? Please take a look on the screen shot.
I have in the hugo.toml
enableGitInfo = true
[frontmatter]
date = ["date", "publishDate", "lastmod"]
lastmod = ["lastmod", ":git", "date", "publishDate"]
In the handbook.md
---
title: "Handbook"
description: "Handbook"
draft: false
slug: handbook
---
# <u>Handbook</u>
Last Modified: {{ .Lastmod.Format "2 January 2006" }}
## General