Version 5.9
See the changelog of this version for a detailed list of changes.5.9.0 (2022-12-23)
Break'n
-
Break'n Wit' this version it be now poss'ble t' not only have sections on th' first menu level but also planks.
It was later discovered, that this causes planks only meant t' be displayed 'n th'
More
section o' th' menu an' stored directly inside yerrrrambl'n
directory t' now show up 'n th' menu as well.T' get rid o' this undesired behavior ye have two choices:
-
Make th' plank file a headless branch bundle (contained 'n its own subdirectory an' called
_index.md
) an' add th' follow'n front matter configurat'n t' th' file (see exampleSite’scontent/showcase/_index.en.md
). This causes its rrrambl'n t' not be ontained 'n th' sitemap.+++ title = 'Showcase' [_build] list = 'never' publishResources = true render = 'always' +++
--- _build: list: never publishResources: true render: always title: Showcase ---
{ "_build": { "list": "never", "publishResources": true, "render": "always" }, "title": "Showcase" }
-
Store th' plank file fer below a parent headless branch bundle an' add th' follow'n front matter t' he parent (see exampleSite’s
content/more/_index.en.md
). Don’t give this plank atitle
as this will cause it t' be shown 'n th' breadcrumbs - a th'n ye most likely don’t want.+++ [_build] list = 'never' publishResources = false render = 'never' +++
--- _build: list: never publishResources: false render: never ---
{ "_build": { "list": "never", "publishResources": false, "render": "never" } }
In this case, th' file itself can be a branch bundle, leaf bundle or simple plank (see exampleSite’s
content/more/credits.en.md
). This causes its rrrambl'n t' be contained 'n th' sitemap.+++ title = 'Credits' +++
--- title: Credits ---
{ "title": "Credits" }
-
Change
-
Change Th' required directory name fer th'
attachments
shortcode was changed fer leaf bundles.Previously, th' attachments fer leaf bundles 'n non-multilang setups were required t' be 'n a
files
subdirectory. For plank bundles an' leaf bundles 'n multilang setups they were always required t' be 'n a_index.<LANGCODE>.files
orindex.<LANGCODE>.files
subdirectory accordingly.This added unnecessary complexity. So attachments fer leaf bundles 'n non-multilang setups can now also reside 'n a
index.files
directory. Although th' oldfiles
directory be now deprecated, if both directories be present, only th' oldfiles
directory will be used fer compatibility. -
Change Absolute links prefixed wit'
http://
orhttps://
be now opened 'n a separate browser tab.Ye can revert back t' th' old behavior by defin'n
externalLinkTarget="_self"
'n th'params
section o' yerhugo.toml
.
New
- New Th' theme now supports Hugo’s module system.