-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (69 loc) · 1.69 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
---
title: Home
layout: default
---
<h1>
Hello! I'm Luke.
</h1>
<h2>
I'm a...
</h2>
<h3 id="typewriter"></h3>
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<script type="text/javascript">
const instance = new Typewriter('#typewriter', {
strings: ['Hobby Web Developer', 'Student', 'Runner','Science Olympian'],
autoStart: true,
loop: true,
pauseFor: 3000
});
</script>
<noscript>
<h3 style="text-align: center;">Hobby Web Developer | Student | Runner</h3>
</noscript>
<h4>
Some of my web dev projects:
</h4>
<ul>
<li><a href="https://hmsscioly.js.org">HMS Science Olympiad website </a> </li>
<li><a href="https://luke2m.github.io/ccl">CCL website </a> </li>
<li><a href="https://luke2m.gitlab.io/Science-project">Website about vaccines and treatments</a></li>
<li><a href="https://lukesempire.com/geotime">Geologic time scale analogy</a></li>
</ul>
<h4> Latest Post: </h4>
<ul class="entries">
{% for post in site.posts limit:1 %}
<li>
<a href="{{ post.url }}">{{ post.title }} ({{ post.date | date: "%B %d, %Y" }})
</a>
</li>
{% endfor %}
</ul>
<h4>
My languages
</h4>
<ul>
<li>HTML/CSS/Some JS</li>
<li>Bash</li>
<li>Learning C++</li>
<li>English and Japanese</li>
</ul>
<h4>
I use...
</h4>
<ul>
<li>Arch/MX Linux</li>
<li>Git</li>
<li>Vim or Brackets</li>
<li>Vivaldi</li>
<li>Netlify</li>
<li>GitLab/Hub</li>
</ul>
<p>
Thanks!
</p>
<br>
<br>
<br>
<br>
<br>