-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (103 loc) · 4.23 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO -->
<title>Iñaki Fuentes | People, Business and Technology</title>
<meta name="description" content="Stay calm. Be critical. Start building. Trying to be less wrong every day.">
<!-- Tells search engines to index the page (optional) -->
<meta name="robots" content="index,follow">
<!-- Browser toolbar color on some mobile devices (optional) -->
<meta name="theme-color" content="#ffffff">
<!-- Dark/light theme scheme -->
<meta name="color-scheme" content="light dark">
<!-- Canonical link -->
<link rel="canonical" href="https://ifuentes.net" />
<!-- Favicons -->
<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">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<!-- Open Graph -->
<meta property="og:title" content="Iñaki Fuentes Liberal" />
<meta property="og:url" content="https://ifuentes.net/" />
<meta property="og:image" content="https://ifuentes.net/if.png" />
<meta property="og:site_name" content="Iñaki Fuentes Liberal" />
<meta property="og:description" content="Stay calm. Be critical. Start building. Trying to be less wrong every day." />
<meta property="og:type" content="website" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ifuentes" />
<meta name="twitter:creator" content="@ifuentes" />
<meta name="twitter:image" content="https://ifuentes.net/if.png" />
<meta name="twitter:title" content="Iñaki Fuentes Liberal" />
<meta name="twitter:description" content="Stay calm. Be critical. Start building. Trying to be less wrong every day." />
<!-- Local CSS Styles (consider moving this to an external .css file) -->
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.5;
max-width: 980px;
margin: 0 auto;
padding: 0 8px;
}
@media (prefers-color-scheme: dark) {
html {
background: #1c1c1c;
color: white;
}
a { color: #6bf; }
a:visited { color: #f8f; }
a:active { color: red; }
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 0 0 10px 0;
}
</style>
<!-- Font Awesome (optional) -->
<script src="https://kit.fontawesome.com/0025fa325d.js" crossorigin="anonymous"></script>
</head>
<body>
<h1 id="top">Iñaki Fuentes</h1>
<!-- Using a list for social links for better semantics -->
<ul>
<!-- For personal social profiles, you can optionally add rel="me" -->
<li><a href="https://www.linkedin.com/in/inakifuentes/" rel="noopener noreferrer me">LinkedIn</a></li>
<li><a href="https://twitter.com/ifuentes" rel="noopener noreferrer me">Twitter</a></li>
<li><a href="https://github.com/i10s" rel="noopener noreferrer me">GitHub</a></li>
<li><a href="https://www.strava.com/athletes/1980963" rel="noopener noreferrer">Strava</a></li>
<li><a href="https://discordapp.com/users/i10s#1599" rel="noopener noreferrer">Discord</a></li>
<li><a href="https://inaki.bearblog.dev/blog/" rel="noopener noreferrer">Blog</a></li>
<li><a href="https://keybase.io/ifuentes" rel="noopener noreferrer">Keybase</a></li>
</ul>
<!-- JSON-LD structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"familyName": "Fuentes",
"givenName": "Iñaki",
"email": "[email protected]",
"alumniOf": "https://www.northumbria.ac.uk/",
"gender": "https://schema.org/Male",
"sameAs": [
"https://t.me/ifuentes",
"https://twitter.com/ifuentes",
"https://www.linkedin.com/in/inakifuentes/",
"https://www.facebook.com/inaki.fuentes",
"https://www.strava.com/athletes/1980963",
"https://github.com/i10s",
"https://www.reddit.com/user/i10s",
"https://www.instagram.com/ifuentes/"
]
}
</script>
</body>
</html>