-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (31 loc) · 1.34 KB
/
index.html
File metadata and controls
41 lines (31 loc) · 1.34 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>André Paul Grandsire</title>
<meta name="google-site-verification" content="9ohRRNaoFMcCz6ru0CCyRYJku-JQVrjAZ_x4PxbIGA8" />
<meta property="og:title" content="André Paul Grandsire" />
<meta property="og:locale" content="pt_BR" />
<meta property="og:url" content="https://andrepg.github.io/" />
<meta property="og:site_name" content="André Paul Grandsire" />
<meta property="twitter:title" content="André Paul Grandsire" />
<meta name="twitter:card" content="summary" />
<link rel="canonical" href="https://andrepg.github.io/" />
<script type="module" src="src/main.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body class="min-h-screen">
<script>
const redirect = sessionStorage.getItem('redirect');
if (redirect !== location.href) {
sessionStorage.removeItem('redirect');
history.replaceState(null, null, redirect);
}
</script>
<div id="app" class="flex flex-col min-h-screen"></div>
</body>
</html>