Page Meta Information

The theme supports a default display of page meta information in layouts/partials/content-footer.html.

The content footer dynamically pulls information based on the availability of GitInfo metadata. If Git information is present, it uses the author’s name, email, and the date from the Git commit details. This ensures that the displayed information is always up-to-date with the latest modifications.

In cases where Git information is not available, the theme falls back to LastModifierDisplayName, LastModifierEmail, and Date defined in the page’s front matter.

Disable Display of Author’s Name

Option You can disable the output of an author’s name and its according email address by setting this parameter to true.

hugo.
[params]
  hideAuthorName = true
params:
  hideAuthorName: true
{
   "params": {
      "hideAuthorName": true
   }
}

Disable Display of Author’s Email

Option The author’s email, when displayed, is presented as a clickable mailto link, providing a convenient way for readers to reach out. You can disable the output of an author’s email address by setting this parameter to true.

hugo.
[params]
  hideAuthorEmail = true
params:
  hideAuthorEmail: true
{
   "params": {
      "hideAuthorEmail": true
   }
}

Disable Display of Authoring Date

Option # If the standard content-footer finds an authoring date, you can disable its output by setting this parameter to true.

hugo.
[params]
  hideAuthorDate = true
params:
  hideAuthorDate: true
{
   "params": {
      "hideAuthorDate": true
   }
}

Adjust the Timestamp Format

Option You can overwrite the default date format used when displaying a pages meta information. See the Hugo docs for possible values.

hugo.
[params]
  dateFormat = ':date_medium'
params:
  dateFormat: :date_medium
{
   "params": {
      "dateFormat": ":date_medium"
   }
}