Render redirect page for each account
This commit is contained in:
parent
64aa9b93e2
commit
a2f1d51561
2 changed files with 12 additions and 0 deletions
|
@ -12,3 +12,5 @@ disableKinds:
|
||||||
outputs:
|
outputs:
|
||||||
home:
|
home:
|
||||||
- html
|
- html
|
||||||
|
page:
|
||||||
|
- html
|
||||||
|
|
10
layouts/_default/single.html
Normal file
10
layouts/_default/single.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>{{ .Params.account_url }}</title>
|
||||||
|
<link rel="canonical" href="{{ .Params.account_url }}">
|
||||||
|
<meta http-equiv="refresh" content="0; url={{ .Params.account_url }}">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Redirecting to {{ .Params.account_url }}...</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in a new issue