You are paginating in layouts/partials/taxonomy-li.html
.
When you paginate, an alias is created at (for example) public/tags/page/1/index.html
.
This uses the same alias template, and within that context, neither .Site
nor .Page.Site
are available. Use the site
function instead.
<!DOCTYPE html>
<html lang="{{ site.LanguageCode }}">
<head>
<title>{{ .Permalink }}</title>
<link rel="canonical" href="{{ .Permalink }}"/>
<meta name="robots" content="noindex">
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url={{ .Permalink }}" />
</head>
</html>