-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (74 loc) · 3.2 KB
/
index.html
File metadata and controls
84 lines (74 loc) · 3.2 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
83
84
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0" />
<title>Skifli | Home</title>
<link rel="icon" type="image/png" href="https://avatars.githubusercontent.com/u/121291719" />
<link href="assets/css/global.css" rel="stylesheet" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<script src="assets/js/global.js" type="module"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
<script defer src="https://cloud.umami.is/script.js"
data-website-id="cc78779a-0731-4122-a445-358285f1e3fc"></script>
</head>
<body data-homeurl="./">
<noscript>
<div id="js-required" class="island middle" style="width: 300px">
<div class="toolbar">
<div class="title">
<span class="material-symbols-outlined">
error
</span>
<p>Error</p>
</div>
<div class="action-buttons">
<div class="icon close">
<img alt="Close" />
</div>
</div>
</div>
<div class="body">
<div class="contents">
<p>This website requires JavaScript to be enabled.</p>
</div>
</div>
</div>
</noscript>
<div class="island page-content blog-window" style="width: 500px; display: none;" data-page="home">
<div class="toolbar">
<div class="title">
<span class="material-symbols-outlined">
home
</span>
<p>Home</p>
</div>
<div class="action-buttons">
<div class="icon close">
<img alt="Close" />
</div>
</div>
</div>
<div class="body">
<div class="contents">
<p>I'm <b>Skifli</b>, a full-stack developer, 🏓player, 🎹🎺enjoyer, and 🎧addict. I've been interested
in technology since a young age, and have been programming since 2020. I know <strike>too
many</strike> a lot of languages, including <b>Python</b>, <b>C</b>, <b>Go</b>, and <b>Rust</b>
- somehow 3 / 5 of the most popular programming languages according to <a
href="https://survey.stackoverflow.co/2024/#section-most-popular-technologies-programming-scripting-and-markup-languages"
target="_blank">Stack Overflow's 2024 Developer Survey</a> (I'm not sure how that happened
either).<br></p>
<h2>Latest Blogs</h2>
<script src="./assets/js/blog.js" type="module"></script>
<script type="module">
import { displayBlogs } from "./assets/js/blog.js";
displayBlogs(3);
</script>
<ul id="blogs">
</ul>
</div>
</div>
</div>
</body>
</html>