-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (90 loc) · 4.11 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
85
86
87
88
89
90
91
92
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Ramiro Algozino | ramiro@algozino.com.ar</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="style.css" />
<meta
name="keywords"
content="telecommunications,engineer,devops,infrastructure as code,kubernetes,certified kubernetes administrator,certififed kubernetes developer"
/>
<meta
name="description"
content="This is the personal web page for Ramiro Algozino, a Telecommunications Engineer from Argentina currently living in Milan (Italy). Here you can find more about his hobbies, social media presence and contact information."
/>
<!-- Search Engine -->
<meta
name="image"
content="https://s.gravatar.com/avatar/a0991f9a7ea425b4f5c19c7e08a5517d?s=1200"
/>
<!-- Schema.org for Google -->
<meta itemprop="name" content="Ramiro Algozino" />
<meta
itemprop="description"
content="🎓 Telecommunications Engineer — 🧳 Infrequent Traveller — 📸 Amateur Photographer — 💼 Senior Platform Architect @ SIGHUP — C.K.A. & C.K.A.D. & C.K.S."
/>
<meta
itemprop="image"
content="https://s.gravatar.com/avatar/a0991f9a7ea425b4f5c19c7e08a5517d?s=1200"
/>
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Ramiro Algozino" />
<meta
name="twitter:description"
content="🎓 Telecommunications Engineer — 🧳 Infrequent Traveller — 📸 Amateur Photographer — 💼 Senior Platform Architect @ SIGHUP — C.K.A. & C.K.A.D. & C.K.S."
/>
<meta name="twitter:site" content="@ralgozino" />
<meta name="twitter:creator" content="@ralgozino" />
<meta
name="twitter:image:src"
content="https://s.gravatar.com/avatar/a0991f9a7ea425b4f5c19c7e08a5517d?s=1200"
/>
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="Ramiro Algozino" />
<meta
name="og:description"
content="🎓 Telecommunications Engineer — 🧳 Infrequent Traveller — 📸 Amateur Photographer — 💼 Senior Platform Architect @ SIGHUP — C.K.A. & C.K.A.D. & C.K.S."
/>
<meta
name="og:image"
content="https://s.gravatar.com/avatar/a0991f9a7ea425b4f5c19c7e08a5517d?s=1200"
/>
<meta name="og:url" content="https://algozino.com.ar" />
<meta name="og:site_name" content="Ramiro Algozino" />
<meta name="og:type" content="website" />
</head>
<body>
<noscript>
<p>
This page uses Javascript to detect your prefered language and
redirect you, but your web browser doesn't support it or you
have Javascript disabled.
</p>
<p>Please, select your prefered language manually:</p>
<ul>
<li><a href="./en/" hreflang="en">English</a></li>
<li><a href="./es/" hreflang="es">Spanish (Español)</a></li>
<li><a href="./it/" hreflang="it">Italian (Italiano)</a></li>
</ul>
</noscript>
<script>
var userLang = navigator.language || navigator.userLanguage;
userLang = userLang.split("-")[0];
switch (userLang.toLowerCase()) {
case "es":
window.location.href = "./es/";
console.log("redirecting to spanish version");
break;
case "it":
window.location.href = "./it/";
console.log("redirecting to italian version");
break;
default:
console.log("redirecting to english version");
window.location.href = "./en/";
}
</script>
</body>
</html>