GoBlog/templates/redirect.gohtml

9 lines
283 B
Plaintext
Raw Normal View History

{{ define "redirect" }}
<!doctype html>
2020-10-12 16:47:23 +00:00
<html lang={{ .Blog.Lang }}>
<meta charset="utf-8"/>
<meta name="robots" content="noindex">
2020-10-12 16:47:23 +00:00
<title>{{ .Data }}</title>
<link rel="canonical" href="{{ .Data }}"/>
<meta http-equiv="refresh" content="0; url={{ .Data }}"/>
{{ end }}