hugo-theme-relearn/exampleSite/layouts/changelog/views/article.html
2024-10-11 16:46:45 +02:00

21 lines
No EOL
647 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/history" "basics/releasenotes" }}
{{- with or
(.GetPage $path)
(.GetPage (strings.TrimRight "/" $path))
}}
{{ partial "partials/shortcodes/link.html" (dict "page" $page "url" .Path "content" "★ What's new in this version ★") }}
<hr>
{{- end }}
{{ partial "article-content.html" . }}
<footer class="footline">
{{- partial "content-footer.html" . }}
</footer>
</article>