1
0
Fork 0
faulty.equipment/layouts/shortcodes/next-up.html
Hamcha e17a9dd997
All checks were successful
Deploy to Artifacts / deploy (push) Successful in 11s
fixup links
2024-04-27 19:52:35 +02:00

12 lines
419 B
HTML

{{ $tag := .Get 0 }} {{ $param := .Get 1 }} {{ $next := where (where (sort
site.RegularPages "Date" "asc") ".Date" "gt" .Page.Date) ".Params.tags"
"intersect" (slice $tag) | first 1 }} {{ with $next }} {{ $page := index . 0 }}
<h3>
Next up:
<a href="{{ $page.RelPermalink }}"
>{{ with $param }}{{ index $page.Params $param }}{{ else }}{{ $page.Title
}}{{ end }}</a
>
</h3>
{{ else }}{{ .Inner }}{{ end }}