I have recently re-evaluated how to add, in simple way, page numbers from pagination into <title>
tag.
I found this old post:
Without an answer. The answer was quite simple and allowed me to add Page Title into titles.
i18n\en.toml
[PageNoInTitle]
other = " | Page "
Added below inside <title>
tag:
{{ if .IsNode }}{{ if gt .Paginator.PageNumber 1 -}} {{ T "PageNoInTitle" }}{{ .Paginator.PageNumber }}{{ end }}{{ end }}