-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<!-- Original title, this is what the Search Engine will read -->
<title>César Costas - Curriculum Vitae</title>
<!-- This should be the repo name -->
<base href="/cv/">
<!-- META -->
<meta charset="UTF-8">
<meta name="description" content="Costas's awesome JS generated CV">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="steelblue">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="steelblue">
<meta name="msapplication-TileColor" content="steelblue">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="steelblue">
<!-- PWA Manifest -->
<link rel="manifest" href="./manifest.json">
<!-- Icon -->
<link rel="icon" href="./cv-icon.png">
<!-- Link to Vanilla Framework -->
<script type="importmap">{ "imports": { "VanillaDOM": "./utils/vanilla.dom.js", "VanillaCSS": "./utils/vanilla.css.js" } }</script>
</head>
<body>
<!-- Loading image : Will be destroyed by the content -->
<div style="height:50px;width:50px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="25 25 50 50" style="height:100%;transform-origin:center center;width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto"><animateTransform attributeName="transform" attributeType="XML" dur="2s" from="0 0 0" repeatCount="indefinite" to="360 0 0" type="rotate"/><circle cx="50" cy="50" r="20" fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="5"><animate attributeName="stroke-dashoffset" dur="1.5s" repeatCount="indefinite" values="0;-35;-124"/><animate attributeName="stroke-dasharray" dur="1.5s" repeatCount="indefinite" values="1,200;89,200;89,200"/></circle></svg>
</div>
<!-- App Entrypoint -->
<script type="module" src="./app.js"></script>
</body>
</html>