-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (74 loc) · 2.79 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
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Main Page</title>
<link rel="stylesheet" href="css/style.scss">
</head>
<body>
<header>
<nav>
<div class="menu-icon">☰</div>
</nav>
<p class="helloworld">Hello World !<br> My name is <span c lass="highlight">Sseoni</span></p>
</header>
<main>
<div class="container">
<section class="profile">
<img src="https://avatars.githubusercontent.com/u/82037889?v=4" alt="Profile Image">
<div class="profile-info">
<h2>Sseoni👩🏻💻🐶✨🥐</h2>
<p>Korean girl who studies AI/ML in Seoul</p>
<p>한국어 | English | Français | 汉语</p>
<p>Python | SQL | C/C++ | Java<br>Machine Learning | AWS</p>
</div>
</section>
<section class="recent-posts">
<h2>Recent Posts</h2>
<ul>
<li><a href="#"><div class="post"></div></a></li>
<li><a href="#"><div class="post"></div></a></li>
<li><a href="#"><div class="post"></div></a></li>
</ul>
<div class="social-links">
<a href="https://github.com/sseoni"><div class="circle"></div>Github</a>
<a href="https://www.linkedin.com/in/seohyun-shin-4529b330b"><div class="circle"></div>LinkedIn</a>
<a href="skills.html"><div class="circle"></div>Skills</a>
<a href="photos.html"><div class="circle"></div>Photos</a>
</div>
</section>
</div>
<section class="menu">
<nav>
<a href="#">ML</a>
<a href="#">Docker</a>
<a href="#">Github</a>
<a href="#">ADsP</a>
<a href="#">SQLD</a>
</nav>
</section>
<section class="all-posts">
<h2>All Posts</h2>
{% for post in site.posts %}
<article class='post'>
<h1 class='post-title'>
<a href="{{ site.path }}{{ post.url }}">
{{ post.title }}
</a>
</h1>
</article>
{% endfor %}
</section>
<div class="pagination">
<button id="prev">Previous</button>
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
<button id="next">Next</button>
<script src="pagination.js"></script>
</div>
</main>
</body>
</html>