-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtmpl.html
More file actions
24 lines (24 loc) · 1 KB
/
tmpl.html
File metadata and controls
24 lines (24 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url={{.Redirect}}">
<meta name="description" content="{{.Desc}}">
<meta name="theme-color" content="#db5620">
<meta property="og:title" content="{{.Title}}">
<meta property="og:site_name" content="Ebitengine - A dead simple 2D game engine for Go">
<meta property="og:image" content="{{.Share}}">
<meta property="og:description" content="{{.Desc}}">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@hajimehoshi">
<meta name="twitter:title" content="{{.Title}}">
<meta name="twitter:description" content="{{.Desc}}">
<meta name="twitter:image" content="{{.Share}}">
<link rel="canonical" href="{{.Redirect}}">
<link rel="icon" href="/images/favicon.png" type="image/png">
<title>{{.Title}}</title>
</head>
<body>
<p>This page has been moved to <code><a href="{{.Redirect}}">{{.Redirect}}</a></code>.</p>
</body>
</html>