diff options
| author | Mirek Kratochvil <exa.exa@gmail.com> | 2023-05-24 23:43:33 +0200 |
|---|---|---|
| committer | Mirek Kratochvil <exa.exa@gmail.com> | 2023-05-24 23:43:33 +0200 |
| commit | 66fb2f5f08a2dab465784c55ff694c08736b7d3e (patch) | |
| tree | 78f7f253ee975a862cf3afacc3f178640b256141 /templates | |
| parent | 1a24212ec42c9ae93baa13fe30000f5e47176b62 (diff) | |
| download | reploy-66fb2f5f08a2dab465784c55ff694c08736b7d3e.tar.gz reploy-66fb2f5f08a2dab465784c55ff694c08736b7d3e.tar.bz2 | |
render, install files
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> |
