mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-07 01:54:23 +00:00
17 lines
746 B
HTML
17 lines
746 B
HTML
{{ $lang := site.LanguageCode | default site.Language.Lang }}
|
|
<!DOCTYPE html>
|
|
<html {{ with $lang }}lang="{{ . }}"{{ end }}>
|
|
<head>
|
|
<title>{{ .Permalink }}</title>
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<meta name="robots" content="noindex">
|
|
<meta charset="utf-8">
|
|
<noscript><meta http-equiv="refresh" content="0; url={{ .Permalink }}"></noscript>
|
|
{{ if site.Params.main.enableLanguageSelectionStorage }}
|
|
{{- partial "footer/scripts.html" (dict "page" page "type" "critical") -}}
|
|
{{- partial "footer/scripts.html" (dict "page" page "type" "functional") -}}
|
|
{{ else }}
|
|
<script src='{{ partial "utilities/GetStaticURL" (dict "url" "js/alias.js") }}'></script>
|
|
{{ end }}
|
|
</head>
|
|
</html> |