2024-09-15 01:23:35 +02:00
2024-09-16 10:05:14 +02:00
< article class = "default" >
< header class = "headline" >
{{- partial "content-header.html" . }}
< / header >
2024-09-15 01:23:35 +02:00
{{ partial "heading-pre.html" . }}{{ partial "heading.html" . }}{{ partial "heading-post.html" . }}
2024-09-18 20:36:42 +02:00
{{- $page := .}}
2024-09-29 23:54:17 +02:00
{{- $path := replace .Path "introduction/releasenotes" "introduction/changelog" }}
2024-09-18 20:36:42 +02:00
{{- with or
(.GetPage $path)
(.GetPage (strings.TrimRight "/" $path))
}}
See the {{ partial "partials/shortcodes/link.html" (dict "page" $page "url" .Path "content" "changelog of this version") }} for a detailed list of changes.
< hr >
{{- end }}
2024-09-15 01:23:35 +02:00
2025-03-31 00:36:31 +02:00
< ul >
< li > < p > {{ partial "shortcodes/badge.html" (dict
"page" .
"color" "fuchsia"
"icon" "fa-fw fab fa-hackerrank"
"title" " "
"content" ($page.Params.minHugoVersion)
) }} Minimum required Hugo version< / p > < / li >
< li > < p > {{ partial "shortcodes/badge.html" (dict
"page" .
"style" "warning"
"title" " "
"content" "Breaking"
) }} Change requiring action after upgrade< / p > < / li >
< li > < p > {{ partial "shortcodes/badge.html" (dict
"page" .
"style" "note"
"title" " "
"content" "Change"
) }} Change of behavior, may require action< / p > < / li >
< li > < p > {{ partial "shortcodes/badge.html" (dict
"page" .
"style" "info"
"icon" "plus-circle"
"title" " "
"content" "New"
) }} New behavior, often introducing new options< / p > < / li >
< / ul >
< hr >
2024-09-15 01:23:35 +02:00
{{ partial "article-content.html" . }}
2024-09-16 10:05:14 +02:00
< footer class = "footline" >
{{- partial "content-footer.html" . }}
< / footer >
< / article >