-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
109 lines (82 loc) · 3.88 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
<meta name="description" content="Seongjoo Jung's Website">
<!-- Meta Meta Tags -->
<meta property="og:type" content="website">
<meta property="og:title" content="Home">
<meta property="og:description" content="Seongjoo Jung's Website">
<meta property="og:image" content="https://seongjoojung.github.io/favicons/fav.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary">
<meta property="twitter:domain" content="seongjoojung.github.io">
<meta name="twitter:title" content="Home">
<meta name="twitter:description" content="Seongjoo Jung's Website">
<meta name="twitter:image" content="https://seongjoojung.github.io/favicons/fav.png">
<link rel="icon" href="/favicons/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="icon" href="/favicons/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/favicons/apple-touch-icon.png">
<link rel="manifest" href="/favicons/site.webmanifest">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<title>Seongjoo Jung's Website</title>
</head>
<body>
<header>
<h1>Seongjoo Jung</h1>
<p>Home</p>
</header>
<nav>
<ul>
<li><a href="/index">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/posts">Posts</a></li>
<li><a href="/pdfs/CV.pdf">CV</a></li>
</ul>
</nav>
<main-container>
<main>
<aside>
<h2><a href="about" style="text-decoration:none; color: inherit">About me</a></h2>
<img style="max-width: 250px;" src="images/Seongjoo.jpg" alt="My Photo">
</aside>
<section>
<h2>Featured posts</h2>
<div>
<h3 style="display: inline;">Visualizing the Volta Potential in DFT calculations</h3>
<p style="display: inline;" class="date">
<time datetime="Tue Nov 21 2023 16:46:23 GMT-0800 (Pacific Standard Time)">October 10, 2023</time>
</p>
<p style="margin-top:6px; margin-bottom:6px;">Seeing the unseen, speaking the unspoken and transferring charges across vacuum</p>
<a href="/posts/volta-potential/">Read more</a>
<br>
<br>
<h3 style="display: inline;">VASP Force Correction Patch: Tutorial</h3>
<p style="display: inline;" class="date">
<time datetime="Tue Nov 21 2023 16:46:23 GMT-0800 (Pacific Standard Time)">June 17, 2023</time>
</p>
<p style="margin-top:6px; margin-bottom:6px;">How to use the force correction patch for VASP to simulate materials under constant electric field</p>
<a href="/posts/force-correction-tutorial/">Read more</a>
<br>
<br>
<h3 style="display: inline;">Understanding Thin Film (Ferroelectric) Capacitors</h3>
<p style="display: inline;" class="date">
<time datetime="Tue Nov 21 2023 16:46:23 GMT-0800 (Pacific Standard Time)">June 7, 2023</time>
</p>
<p style="margin-top:6px; margin-bottom:6px;">Interactive explanation about depolarization fields in capacitors</p>
<a href="/posts/understanding-thin-film-capacitors/">Read more</a>
<br>
<br>
</div>
</section>
</main>
</main-container>
<footer>
<p>© 2023-2024 Seongjoo Jung</p>
</footer>
</body>
</html>