Find a file
2025-08-22 23:27:47 +01:00
.husky init module 2022-06-21 15:50:51 +02:00
archetypes Add configurable timestamping for posts (#494) 2024-11-19 09:09:43 +01:00
assets Merge remote-tracking branch 'upstream/master' 2025-06-03 15:03:51 +01:00
exampleSite Replaced deprecated "paginate" key with "pagination.pagerSize" (#518) 2025-01-06 12:07:57 +01:00
images update tn cover 2024-11-11 09:02:41 +01:00
layouts change emoji for warning blocks 2025-08-22 23:27:47 +01:00
static 4.2.0 (#530) 2025-03-10 13:47:59 +01:00
.babelrc init module 2022-06-21 15:50:51 +02:00
.editorconfig add editorconfig 2024-12-21 23:42:34 +01:00
.eslintrc.yml Update dev dependencies 2022-11-07 18:34:28 +01:00
.gitignore Update .gitignore 2023-06-09 23:28:59 +02:00
.prettierrc Update dev dependencies 2022-11-07 18:34:28 +01:00
.stylelintrc.json we are back with 4.0 2024-08-21 15:06:28 +02:00
babel.config.js init module 2022-06-21 15:50:51 +02:00
COMMUNITY-FEATURES.md Add configurable timestamping for posts (#494) 2024-11-19 09:09:43 +01:00
config.toml Add required version to config 2023-01-03 20:41:08 -05:00
go.mod we are back with 4.0 2024-08-21 15:06:28 +02:00
LICENSE.md update LICENSE year 2024-10-10 08:14:54 +02:00
package-lock.json 4.2.0 (#530) 2025-03-10 13:47:59 +01:00
package.hugo.json 4.2.0 (#530) 2025-03-10 13:47:59 +01:00
package.json 4.2.0 (#530) 2025-03-10 13:47:59 +01:00
README.md README.md: add documentation for front matter parameters 2025-07-26 04:41:13 +01:00
theme.toml Update theme.toml 2025-03-28 19:23:02 +01:00
yarn.lock 4.2.0 (#530) 2025-03-10 13:47:59 +01:00

Terminal

This is my version of panr's Terminal Hugo theme. I've not made many changes at all, but this is just to store any changes that are better done with git instead of copying and overriding the files in my Hugo site's root directory.

This is the theme used on my website. You can see the website source here.

Configuration

The same as upstream, with the following changes:

[params]
  # whether to show a page's word count
  showWordCount = true

Front Matter

This fork adds the following optional parameters which can be added to the front matter of a page. They should be under the params section header.

Parameter Name Description
showWordCount Toggle showing the word count on a page-by-page basis. If absent, will inherit from site-wide config.
showLastModNoDate The "updated" post metadata appears by default with the original date of posting. This can be set to true to show the date of last modification if there is no date set. Useful for things like privacy policies. Has no effect when set to false, and has no effect when set to true but date is set in the front matter.

e.g.

+++
draft = false
title = 'Privacy Policy'

[params]
  showWordCount = false
  showLastModNoDate = true
+++