18 lines
506 B
HTML
18 lines
506 B
HTML
{{- $homepage := .Site.Params.home -}}
|
|
<!doctype html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<title>{{ .Site.Title }}</title>
|
|
<link rel="canonical" href="{{ $homepage | absURL }}" />
|
|
<meta http-equiv="refresh" content="0; url={{ $homepage | absURL }}" />
|
|
<script>
|
|
window.location.href = "{{ $homepage | absURL }}";
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
If you are not redirected automatically, follow this
|
|
<a href="{{ $homepage | absURL }}">link</a>.
|
|
</p>
|
|
</body>
|
|
</html>
|