Make slide details redirect to slides
The URL remapping doesn't quite work as I wanted it, so this will do for now.
This commit is contained in:
parent
aeb2315a7b
commit
ee1c543b5d
1 changed files with 10 additions and 0 deletions
10
layouts/_default/single.html
Normal file
10
layouts/_default/single.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>{{ .Params.slides }}</title>
|
||||||
|
<link rel="canonical" href="{{ .Params.slides }}"/>
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
<meta http-equiv="refresh" content="0; url={{ .Params.slides }}"/>
|
||||||
|
</head>
|
||||||
|
</html>
|
Reference in a new issue