-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (79 loc) · 3.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/x-icon"
href="https://raw.githubusercontent.com/python/pythondotorg/master/static/favicon.ico"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="144x144"
href="https://raw.githubusercontent.com/python/pythondotorg/master/static/apple-touch-icon-144x144-precomposed.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="114x114"
href="https://raw.githubusercontent.com/python/pythondotorg/master/static/apple-touch-icon-114x114-precomposed.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="72x72"
href="https://raw.githubusercontent.com/python/pythondotorg/master/static/apple-touch-icon-72x72-precomposed.png"
/>
<link
rel="apple-touch-icon-precomposed"
href="https://raw.githubusercontent.com/python/pythondotorg/master/static/apple-touch-icon-precomposed.png"
/>
<link
rel="apple-touch-icon"
href="https://raw.githubusercontent.com/python/pythondotorg/master/static/apple-touch-icon-precomposed.png"
/>
<meta
name="msapplication-TileImage"
content="https://raw.githubusercontent.com/python/pythondotorg/master/static/metro-icon-144x144.png"
/>
<meta name="msapplication-TileColor" content="#3673a5" />
<meta name="msapplication-navbutton-color" content="#3673a5" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Interactive Playground for Python" />
<meta
name="keywords"
content="python, playground, repl, python playground, python repl"
/>
<meta name="theme-color" content="#3673a5" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="https://python-playground.netlify.app" />
<meta
name="twitter:description"
content="Interactive Playground for Python"
/>
<meta name="twitter:title" value="Python Playground" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/python/pythondotorg/master/static/opengraph-icon-200x200.png"
/>
<meta name="twitter:image:alt" content="Python Playground Preview" />
<meta property="og:title" content="Python Playground" />
<meta property="og:type" content="website" />
<meta property="og:site" content="https://python-playground.netlify.app" />
<meta property="og:url" content="https://python-playground.netlify.app" />
<meta property="og:site_name" content="Python Playground" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/python/pythondotorg/master/static/opengraph-icon-200x200.png"
/>
<meta property="og:image:alt" content="Python Playground Preview" />
<meta
property="og:description"
content="Interactive Playground for Python"
/>
<title>Python Playground</title>
<link rel="canonical" href="https://python-playground.netlify.app" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>