I know that .URL
been depreciated. For some time Hugo thrown a warning to replace .URL
with use of .Permalink
etc.
Interesting discussion come up when Frank from tekki-tipps.de mentioned that .URL is not documented in Hugo documents anymore, but the below code is still working.
The general advise was to replace .URL
with .RelPermalink
or .Permalink
, however in below instance is not working, but .URL
is. Can somebody advise about the uses of .URL
.
{{ $href := .Permalink }}
{{ with $.Paginator }}
{{ if gt .PageNumber 1 }}
{{ $href = .URL | absURL }}
{{ end }}
{{ end }}
<link rel="canonical" href="{{ $href }}">