-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (74 loc) · 4.09 KB
/
Copy pathindex.html
File metadata and controls
82 lines (74 loc) · 4.09 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
82
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ephraem</title>
<link rel="icon" type="image/svg+xml" href="/assets/img/Ephraem-pink.svg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link href="https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap" rel="stylesheet">
<meta name="description" content="Ephraem — Video Editor, Graphic & Motion Designer, Developer.">
<link rel="stylesheet" href="/assets/css/root.css">
<link rel="stylesheet" href="/assets/css/keyboard-cards.css">
</head>
<body>
<div id="page-transition"></div>
<div class="bg-grid"></div>
<div class="blob blob-pink"></div>
<div class="blob blob-cyan"></div>
<div class="wrapper">
<section class="hero">
<span class="badge">Digital Creator</span>
<h1 class="name">EPHRAEM</h1>
<p class="tagline">Video Editor · Graphic & Motion Designer · Developer</p>
<social-links class="socials"></social-links>
</section>
<div class="cards">
<a href="/Portfolio/" class="card card-portfolio">
<span class="card-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M4 22C4 17.5817 7.58172 14 12 14C16.4183 14 20 17.5817 20 22H4ZM12 13C8.685 13 6 10.315 6 7C6 3.685 8.685 1 12 1C15.315 1 18 3.685 18 7C18 10.315 15.315 13 12 13Z"></path></svg></span>
<div class="card-body">
<h2 class="card-title">Portfolio</h2>
<p class="card-desc">Video Editing, 3D, Graphic & Motion Design</p>
</div>
<span class="card-arrow">→</span>
</a>
<a href="/wiki/" class="card card-wiki">
<span class="card-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M13 21V23.5L10 21.5L7 23.5V21H6.5C4.567 21 3 19.433 3 17.5V5C3 3.34315 4.34315 2 6 2H20C20.5523 2 21 2.44772 21 3V20C21 20.5523 20.5523 21 20 21H13ZM7 19V17H13V19H19V16H6.5C5.67157 16 5 16.6716 5 17.5C5 18.3284 5.67157 19 6.5 19H7ZM7 5V7H9V5H7ZM7 8V10H9V8H7ZM7 11V13H9V11H7Z"></path></svg></span>
<div class="card-body">
<h2 class="card-title">Wiki</h2>
<p class="card-desc">Notes, Resources & Documents</p>
</div>
<span class="card-arrow">→</span>
</a>
<a href="/news/" class="card card-news">
<span class="card-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M3 3C12.9411 3 21 11.0589 21 21H18C18 12.7157 11.2843 6 3 6V3ZM3 10C9.07513 10 14 14.9249 14 21H11C11 16.5817 7.41828 13 3 13V10ZM3 17C5.20914 17 7 18.7909 7 21H3V17Z"></path></svg></span>
<div class="card-body">
<h2 class="card-title">News</h2>
<p class="card-desc">Thoughts, Updates & Articles</p>
</div>
<span class="card-arrow">→</span>
</a>
</div>
<footer>
<p>© <span class="copyright-year"></span> Ephraem.</p>
</footer>
</div>
<script src="/assets/js/social-links.js"></script>
<script src="/assets/js/copyright.js"></script>
<script src="/Portfolio/assets/js/router.js"></script>
<script>
window.initRoot = function() {
if (!sessionStorage.getItem('blobEpoch')) {
sessionStorage.setItem('blobEpoch', Date.now());
}
var elapsed = (Date.now() - +sessionStorage.getItem('blobEpoch')) / 1000;
var PERIOD = 9;
var pink = document.querySelector('.blob-pink');
var cyan = document.querySelector('.blob-cyan');
if (pink) pink.style.animationDelay = -(elapsed % PERIOD) + 's';
if (cyan) cyan.style.animationDelay = -((elapsed + 4.5) % PERIOD) + 's';
};
window.initRoot();
</script>
</body>
</html>