mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Move redirect layout into partial
This commit is contained in:
parent
ff405475a2
commit
933b6510ca
3 changed files with 13 additions and 22 deletions
|
@ -1,11 +1 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ .Page.Params.redirect | absURL }}</title>
|
||||
<link rel="canonical" href="{{ .Page.Params.redirect | absURL }}">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta http-equiv="refresh" content="0; url={{ .Page.Params.redirect | absURL }}">
|
||||
</head>
|
||||
</html>
|
||||
{{ partial "redirect" (.Page.Params.redirect | absURL) }}
|
||||
|
|
|
@ -1,11 +1 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ .Permalink }}</title>
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta http-equiv="refresh" content="0; url={{ .Permalink }}">
|
||||
</head>
|
||||
</html>
|
||||
{{ partial "redirect" .Permalink }}
|
||||
|
|
11
site/layouts/partials/redirect.html
Normal file
11
site/layouts/partials/redirect.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ . }}</title>
|
||||
<link rel="canonical" href="{{ . }}">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta http-equiv="refresh" content="0; url={{ . }}">
|
||||
</head>
|
||||
</html>
|
Loading…
Reference in a new issue