Version 8
See the changelog of this version for a detailed list of changes.0.126.3 Minimum required Hugo version
Breaking Change requiring action after upgrade
Change Change of behavior, may require action
New New behavior, often introducing new options
8.3.0 (XXXX-XX-XX)
Hugo 0.141.0
- 0.141.0 This release requires a newer Hugo version.
 
New
- 
New The theme can now check external links for validity during build. No more stale links anymore.
To activate it set
urlExternalCheck=truein the yourhugo.tomlparamssection.The name of option
ignoreerrorwas changed tourlIgnoreErrorin that matter. You can leave your config unchanged but will see warnings if you are using the deprecated name. 
8.2.0 (2025-11-01)
New
- 
New A
boxStyleconfiguration is now able to get its default values from an already existing predefined or user-defined style using thestylefield in the same way as you use it with many shortcodes.Additionally there are two new styles
linkandaction, displaying items either in the style of the topbar button or like the action buttons of the Mermaid zoom or the code block copy-to-clipboard buttons. - 
New The
buttonshortcode learned the new parametersborderlessandhint. - 
New Besides the existing variables of
--MAIN-TOPBAR-BORDER-colorand--MENU-TOPBAR-SEPARATOR-color, the rest of the topbar colors are now also configurable.Namely these are
--TOPBAR-BG-color,--TOPBAR-OVERLAY-BG-color,--TOPBAR-SEPARATOR-color,--TOPBAR-TEXT-color,--TOPBAR-LINK-colorand--TOPBAR-LINK-HOVER-color. - 
New With refactoring of boxStyles, buttons and the topbar, it is now possible to set colors of a button when its style is either
linkoraction.This makes it possible to have differing colors between buttons and links. Coloring is now independently configurable for the topbar and the main content area with the new variables
--TOPBAR-BUTTON-color,--TOPBAR-BUTTON-HOVER-coloras well as--MAIN-BUTTON-colorand--MAIN-BUTTON-HOVER-color. - 
New Links and buttons previously were styled based on the
--SECONDARY-color. A differing color for hovering was implicitly available as--MAIN-LINK-HOVER-color. To make things easier for you, this was overhauled.The primary, secondary and accent colors now have available hover counterparts as
--PRIMARY-HOVER-color,--SECONDARY-HOVER-colorand--ACCENT-HOVER-color;Care was taken not to break your existing style variants, so you don’t need to change anything if you are happy with the look of your current variant.
All additions to the variables can be experienced in the style variant generator. Have fun with it!
 - 
New Translation into Danish.
 
8.1.0 (2025-10-05)
Change
- 
Change The
childrenshortcode has learned to show its children in a nice card layout.This required to deprecate the
containerstyleandstyleparameter in favor of the newtypeparameter. Your build will succeed as before but will give you detailed warnings how to migrate your old settings to the new for each occurance.If you haven’t set
containerstyleorstyleno changes are necessary. If you usedcontainerstyle=ulorstyle=linow usetype=treestyle=h*now usetype=list- any other 
containerstyleorstylenow usetype=flat 
If you want to use the new card layout, use
type=card. - 
Change The
externalLinkTargetconfig option has changed its default from_blankto_selfcausing external links by default to be opened in the same tab.If you want to get back to the previous behavior of opening external links in a new tab, set
externalLinkTarget='_blank'in yourhugo.toml. 
New
- 
New The theme now supports cards with the
cardshortcode and the correspondingcardsshortcode.See them in action on the shortcodes overview page.
 
8.0.0 (2025-09-11)
Hugo 0.126.3
- 0.126.3 This release requires a newer Hugo version.
 
Breaking
- 
Breaking This release provides compatibility for Hugo 0.146.0 or newer and required to make some breaking changes to internal file structuring.
You will be affected by this if you
- call 
dependencies.gotmplfrom your own templates. The theme will now generate a warning. Calldependencies.htmlinstead. - use page designs. The underlying content views aren’t allowed to be stored in subdirectories anymore. You have to move them up one level.
 - use self-defined output formats.
 
 - call 
 - 
Breaking Search got much more flexible in its configuration but may requires changes by you.
In addition you now can use a different search engine, supply your own template for the generated search index and change the layout of the dedicated search page by setting a different content view.
 
Change
- 
Change The
<h1>color for the page heading has changed its default value from--MAIN-TEXT-colorto the more logical--MAIN-TITLES-TEXT-color.If you experience a change in your page title color after upgrading, just set
--MAIN-TITLES-H1-TEXT-colorto your previously used color. - 
Change For the
childrenshortcode the final default value if parametersort=autoand noordersectionsbysetting was found has changed fromweighttodefault.If your weights are all correctly set you will not recognize a difference. If you have duplicate weights on a level or have not set weights at all while sorting should happen by weight, this change will lead to a deterministic order while previously it didn’t.
 
New
- New The theme has updated its Mermaid dependency to 11.8.0. This adds support for radar graphs and treemaps.