Clarify that the git commit and timestamp is for the page

Hugo retrieves the git info for each individual page.
A page that hasn't changed recently (ex: the home page) would display
an older commit and timestamp despite there being content that was
published afterwards.

Recent content have the right timestamps and git commit hashes so
this is just a clarification.

Change-Id: I785d24faca61e9411490e4271a896fd21ab2d27d
This commit is contained in:
David Moreau Simard 2019-01-17 11:52:12 -05:00
parent 5368e6cb0e
commit 5111d5a5c9
No known key found for this signature in database
GPG Key ID: CBEB466764A9E621
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
{{ with .GitInfo }}
<!-- Source -->
<section id="mini-bio">
<h3>Website source</h3>
<p>This website was last updated from source: {{ .AuthorDate }}</p>
<h3>Page source</h3>
<p>This page was last updated from source: {{ .AuthorDate }}</p>
<p>Git commit: <a href="https://git.openstack.org/cgit/openstack/ara-infra/commit/?id={{ .Hash }}">{{ .Hash }}</a></p>
</section>
{{ end }}