-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 2.74 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 2.74 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Augusto Lemble <me@augustolemble.com>">
<link id="dynamic-favicon" rel="shortcut icon" href="assets/handWhite.ico" />
<title>AugustoL</title>
<style>
@import url('vendor/lato.css');
</style>
<link href="styles.css" rel="stylesheet">
<link href="vendor/bootstrap.min.css" rel="stylesheet">
<script defer src="vendor/fontawesome.min.js"></script>
</head>
<body id="app">
<div class="container site-wrapper">
<div class="cover-container">
<header>
<div>
<nav class="row">
<div class="col text-center">
<a class="nav-link" href="https://github.com/AugustoL"><span class="fab fa-2x fa-github"></span></a>
</div>
<div class="col text-center">
<a class="nav-link" href="https://www.instagram.com/augustolemble/"><span class="fab fa-2x fa-instagram"></span></a>
</div>
</nav>
</div>
</header>
<main role="main" class="main text-center">
<div class="image-cropper">
<img src="assets/trex.jpg">
</div>
<div class="d-block d-sm-none">
<h4>augustolemble@pm.me</h4>
<p>52BB 857D 19FB 4C9F 5D5D 4F63 B077 3D9E 2743 EB6D</p>
</div>
<div class="d-none d-sm-block">
<h2>augustolemble@pm.me</h2>
<h4>52BB 857D 19FB 4C9F 5D5D 4F63 B077 3D9E 2743 EB6D</h4>
</div>
<div class="links-section">
<div class="links-row">
<a class="pill-link" href="assets/augustolemble@pm.me.asc">PGP Key</a>
<a class="pill-link" href="assets/AugustoLembleCV-short.pdf">CV Short</a>
<a class="pill-link" href="assets/AugustoLembleCV-long.pdf">CV Full</a>
<a class="pill-link" href="assets/AugustoLembleCV-typst.pdf">CV Typst</a>
</div>
</div>
</main>
</div>
</div>
</body>
<script type="text/javascript">
// Change tab icon every click on the body
document.head = document.head || document.getElementsByTagName('head')[0];
document.getElementById('app').addEventListener("click", function(){
var links = document.getElementsByTagName('link');
var oldLink;
for (var i = 0; i < links.length; i++)
if (links[i].id == 'dynamic-favicon'){
oldLink = links[i];
break;
}
var link = document.createElement('link');
link.id= 'dynamic-favicon';
link.rel= 'shortcut icon';
if (oldLink.href.toString().indexOf("assets/handWhite.ico") > 0)
link.href = "assets/handRed.ico";
else
link.href = "assets/handWhite.ico";
document.head.removeChild(oldLink);
document.head.appendChild(link);
});
</script>
</html>