$ mkdir themes
$ cd themes
$ git clone https://github.com/5armale/retrofulhugo.git retrofulhugo
See the Hugo documentation for more information.
This theme is designed to look great on both large-screen and small-screen (mobile) devices.
This theme has support server side highlighting.
Use the highlight
shortcode (with Pygments),
see the Hugo documentation for more information.
To use this feature install Pygments (pip install Pygments
) and add pygmentsuseclasses = true
to your config.toml
.
To use this feature, uncomment and fill out the disqusShortname
parameter in config.toml
.
To add Google Analytics, simply sign up to Google Analytics to obtain your Google Tracking ID, and add this tracking ID to the googleAnalytics
parameter in config.toml
.
If the source of your site is in a Git repo, the SHA corresponding to the commit the site is built from can be shown on the footer. To do so, two environment variables have to be set (GIT_COMMIT_SHA
and GIT_COMMIT_SHA_SHORT
) and parameter commit
has to be defined in the config file:
[Params]
commit = "https://github.com/<username>/<siterepo>/tree/"
This can be achieved by running the next command prior to calling Hugo:
GIT_COMMIT_SHA=`git rev-parse --verify HEAD` GIT_COMMIT_SHA_SHORT=`git rev-parse --short HEAD`
See at xor-gate/xor-gate.org an example of how to add it to a continuous integration system.
This is a retro version of Beautiful Hugo, a port of the Jekyll theme Beautiful Jekyll by Dean Attali. It supports most of the features of the original theme.
MIT Licensed, see LICENSE.
- Client side syntax highlighting (use triple backticks "```" or triple tilde "~~~" around code blocks)