mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
23 lines
No EOL
796 B
HTML
23 lines
No EOL
796 B
HTML
|
|
<article class="default">
|
|
<header class="headline">
|
|
{{- partial "content-header.html" . }}
|
|
</header>
|
|
{{ partial "heading-pre.html" . }}{{ partial "heading.html" . }}{{ partial "heading-post.html" . }}
|
|
{{- $page := .}}
|
|
{{- $path := replace .Path "basics/releasenotes" "basics/history" }}
|
|
{{- 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 }}
|
|
|
|
{{ partial "partials/shortcodes/include.html" (dict "page" . "file" "basics/releasenotes/legend") | .RenderString }}
|
|
|
|
{{ partial "article-content.html" . }}
|
|
<footer class="footline">
|
|
{{- partial "content-footer.html" . }}
|
|
</footer>
|
|
</article> |