archive
/
social-landing
Archived
1
Fork 0

Render redirect page for each account

This commit is contained in:
Jake Howard 2019-01-16 21:34:56 +00:00
parent 64aa9b93e2
commit a2f1d51561
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 12 additions and 0 deletions

View File

@ -12,3 +12,5 @@ disableKinds:
outputs:
home:
- html
page:
- html

View 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>