-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 2.63 KB
/
index.html
File metadata and controls
57 lines (57 loc) · 2.63 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
---
layout: default
title: Home
---
{% assign title = site.canvas.home %}
{% assign tag = 'home' %}
{% assign id = 1 %}
{% include canvas.html %}
<div class="home container">
<div class="container row mx-auto add-padding-top-large add-padding-bottom-large" style="gap: 20px; justify-content: space-evenly">
<div class="align-self-center intro-text text_right" style="max-width: 500px;">
<h1 class="add-padding-small">Hi, I'm Yueh 🐢</h1>
<div class="home-description">
<p>
I started this website as a summer project in 2020 to practice HTML and CSS.
</p>
<p>
Over time, it evolved into a space where I showcase my projects and professional experience—like an interactive resume.
</p>
<span>
Thanks for stopping by!
</span>
</div>
</div>
<div class="align-self-center" style="max-width:300px;">
<img src="{{ "assets/images/yueh.png" | relative_url }}" alt="Me" class="avatar img-fluid img-thumbnail">
</div>
</div>
<div class="container add-padding-top-large add-padding-bottom-large">
<div class="home-section activities">
<h1 class="add-padding-small">Recent Activities</h1>
<hr>
<p>
I just started a new position as a Senior Software Developer at <a href="https://www.finnihealth.com/" target="_blank">Finni Health</a>!!
</p>
</div>
<div class="home-section">
<h1 class="add-padding-small">Recent Articles</h1>
<hr>
<div class="row m-auto">
<div class="container add-margin-top-normal add-margin-bottom-large">
<div class="list-group">
{% for post in site.posts limit: 2 %}
<a href="{{ post.url }}" class="row article-item list-group-item list-group-item-action" style="display: flex">
<span class="article-date col-2" style="align-self: center;">
{{ post.date | date: "%b %d, %Y" }}
</span>
<span class="article-title col-8" style="align-self: center;">{{ post.title }}</span>
<span class="article-label {{ post.label }} col-1">{{ post.label | capitalize }}</span>
</a>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>