diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/default.html | 2 | ||||
| -rw-r--r-- | templates/redirect.html | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/templates/default.html b/templates/default.html index ca9aee0..214229e 100644 --- a/templates/default.html +++ b/templates/default.html @@ -1,6 +1,6 @@ <html> {{> head.html}} <body> -aaaaaa +{{{body}}} </body> </html> diff --git a/templates/redirect.html b/templates/redirect.html new file mode 100644 index 0000000..33ee528 --- /dev/null +++ b/templates/redirect.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <meta http-equiv="refresh" content="0; url={{target}}"/> + <link rel="canonical" href="{{target}}"/> + <title>Permanent Redirect</title> + </head> + <body> + <p>The page has moved to <a href="{{target}}">here</a>.</p> + </body> +</html> |
