Skip to content

Commit 81cb0de

Browse files
committed
FIX: members, news
1 parent f488219 commit 81cb0de

File tree

6 files changed

+159
-559
lines changed

6 files changed

+159
-559
lines changed

contact.html

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,30 +86,17 @@ <h1>Lee Optimization Group</h1>
8686
<nav>
8787
<a href="index.html">Home</a>
8888
<a href="research.html">Research</a>
89+
<a href="publications.html">Publications</a>
8990
<a href="group.html">Members</a>
9091
<a href="hiring.html">Hiring</a>
91-
<a href="gallery.html">Gallery</a>
92+
<!-- <a href="gallery.html">Gallery</a> -->
9293
<a href="contact.html">Contact</a>
9394
</nav>
9495
</header>
9596

9697
<h2>Contact</h2>
9798

9899
<div class="contact-box">
99-
<p><strong>Namhoon Lee</strong></p>
100-
101-
102-
<p><span class="contact-label">(Email)</span>
103-
<a href="mailto:namhoon.lee@postech.ac.kr">
104-
namhoon.lee@postech.ac.kr
105-
</a>
106-
</p>
107-
108-
<p><span class="contact-label">(Phone)</span> +82 (0)54 279 2393</p>
109-
110-
<p><span class="contact-label">(Office)</span> RIST 4, Room #4408</p>
111-
112-
<!-- <br> -->
113100
<p><strong>Computational Optimization Lab</strong></p>
114101

115102
<p>(Office) RIST 4, Room #4427</p>

gallery.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,10 @@ <h1>Lee Optimization Group</h1>
121121
<nav>
122122
<a href="index.html">Home</a>
123123
<a href="research.html">Research</a>
124+
<a href="publications.html">Publications</a>
124125
<a href="group.html">Members</a>
125126
<a href="hiring.html">Hiring</a>
126-
<a href="gallery.html">Gallery</a>
127+
<!-- <a href="gallery.html">Gallery</a> -->
127128
<a href="contact.html">Contact</a>
128129
</nav>
129130
</header>

group.html

Lines changed: 126 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<title>Group | Lee Optimization Group</title>
77

88
<style>
9+
:root {
10+
--position-font-size: 0.7rem;
11+
}
12+
913
body {
1014
font-family: system-ui, -apple-system, sans-serif;
1115
line-height: 1.6;
@@ -97,6 +101,10 @@
97101
color: #333;
98102
}
99103

104+
.member-item .member-position {
105+
font-size: var(--position-font-size, 0.8rem);
106+
}
107+
100108
.member-item a {
101109
color: #007bff; /* 파란색 유지 */
102110
text-decoration: none;
@@ -123,6 +131,71 @@
123131
text-decoration: underline;
124132
}
125133

134+
/* ===== Gallery Preview ===== */
135+
136+
.gallery-preview {
137+
display: grid;
138+
grid-template-columns: repeat(5, 1fr);
139+
gap: 4px;
140+
margin-bottom: 10px;
141+
}
142+
143+
.gallery-preview-item {
144+
position: relative;
145+
overflow: hidden;
146+
border: 1px solid #333;
147+
aspect-ratio: 1;
148+
}
149+
150+
.gallery-preview-item img {
151+
width: 100%;
152+
height: 100%;
153+
object-fit: cover;
154+
display: block;
155+
transition: opacity 0.2s;
156+
}
157+
158+
.gallery-preview-item:hover img {
159+
opacity: 0.85;
160+
}
161+
162+
.gallery-preview-item .tooltip {
163+
position: absolute;
164+
bottom: 0;
165+
left: 0;
166+
right: 0;
167+
background: rgba(0, 0, 0, 0.65);
168+
color: #fff;
169+
font-size: 0.7em;
170+
text-align: center;
171+
padding: 4px 6px;
172+
opacity: 0;
173+
transition: opacity 0.2s;
174+
pointer-events: none;
175+
}
176+
177+
.gallery-preview-item:hover .tooltip {
178+
opacity: 1;
179+
}
180+
181+
.gallery-more {
182+
font-size: 0.95em;
183+
color: #555;
184+
}
185+
186+
.gallery-more a {
187+
color: #007bff;
188+
text-decoration: none;
189+
}
190+
191+
.gallery-more a:visited {
192+
color: #007bff;
193+
}
194+
195+
.gallery-more a:hover {
196+
text-decoration: underline;
197+
}
198+
126199
</style>
127200
</head>
128201

@@ -133,93 +206,135 @@ <h1>Lee Optimization Group</h1>
133206
<nav>
134207
<a href="index.html">Home</a>
135208
<a href="research.html">Research</a>
209+
<a href="publications.html">Publications</a>
136210
<a href="group.html">Members</a>
137211
<a href="hiring.html">Hiring</a>
138-
<a href="gallery.html">Gallery</a>
212+
<!-- <a href="gallery.html">Gallery</a> -->
139213
<a href="contact.html">Contact</a>
140214
</nav>
141215
</header>
142216

143217
<main>
144218

145-
<h2>Principal Investigator</h2>
219+
<h2>Members</h2>
146220
<ul class="member-list">
221+
147222
<li class="member-item">
148223
<img src="group_profile/namhoonlee.png" alt="Namhoon Lee">
149224
<a href="https://namhoonlee.github.io/">Namhoon Lee</a>
225+
<span class="member-position">Principal Investigator</span>
150226
</li>
151-
</ul>
152227

153-
<!-- Administrator -->
154-
<h2>Administrator</h2>
155-
<ul class="member-list">
156228
<li class="member-item">
157229
<img src="group_profile/damiso.png" alt="Dami So">
158230
<span>Dami So</span>
231+
<span class="member-position">Administrator</span>
159232
</li>
160-
</ul>
161-
162-
<!-- Graduate Students -->
163-
<h2>Graduate Students</h2>
164-
<ul class="member-list">
165233

166234
<li class="member-item">
167235
<img src="group_profile/jinseokchung.png" alt="Jinseok Chung">
168236
<span>Jinseok Chung</span>
237+
<span class="member-position">MS/PhD Student</span>
169238
</li>
170239

171240
<li class="member-item">
172241
<img src="group_profile/donghyunoh.jpeg" alt="Donghyun Oh">
173242
<span>Donghyun Oh</span>
243+
<span class="member-position">MS/PhD Student</span>
174244
</li>
175245

176246
<li class="member-item">
177247
<img src="group_profile/sungbinshin.jpg" alt="Sungbin Shin">
178248
<a href="https://ssbin4.github.io">Sungbin Shin</a>
249+
<span class="member-position">MS/PhD Student</span>
179250
</li>
180251

181252
<li class="member-item">
182253
<img src="group_profile/dongyeoplee.jpg" alt="Dongyeop Lee">
183254
<a href="https://dongyeoplee2.github.io">Dongyeop Lee</a>
255+
<span class="member-position">PhD Student</span>
184256
</li>
185257

186258
<li class="member-item">
187259
<img src="group_profile/jihunkim.jpg" alt="Jihun Kim">
188260
<span>Jihun Kim</span>
261+
<span class="member-position">MS Student</span>
189262
</li>
190263

191264
<li class="member-item">
192265
<img src="group_profile/kwanheelee.jpg" alt="Kwanhee Lee">
193266
<a href="https://kwanhee-lee.github.io">Kwanhee Lee</a>
267+
<span class="member-position">MS Student</span>
194268
</li>
195269

196270
<li class="member-item">
197271
<img src="group_profile/hyunjijung.png" alt="Hyunji Jung">
198272
<a href="https://www.linkedin.com/in/hyunji-jung-1121b5276/?locale=en">Hyunji Jung</a>
273+
<span class="member-position">MS Student</span>
199274
</li>
200275

201276
<li class="member-item">
202277
<img src="group_profile/minkyoungsong.jpg" alt="Minkyung Song">
203278
<a href="https://smk2295.github.io/">Minkyoung Song</a>
279+
<span class="member-position">MS Student</span>
204280
</li>
205281

206282
<li class="member-item">
207283
<img src="group_profile/hyeondojang.jpg" alt="Hyeondo Jang">
208284
<a href="https://kr.linkedin.com/in/hyeondo-jang-83a801217">Hyeondo Jang</a>
285+
<span class="member-position">MS Student</span>
209286
</li>
210287

211288
<li class="member-item">
212289
<img src="group_profile/jiyunpark.jpg" alt="Jiyun Park">
213290
<span>Jiyun Park</span>
291+
<span class="member-position">MS Student</span>
214292
</li>
215293

216294
<li class="member-item">
217295
<img src="group_profile/doyoonkim.jpg" alt="Doyoon Kim">
218296
<a href="https://cosmos1030.github.io/">Doyoon Kim</a>
297+
<span class="member-position">MS Student</span>
219298
</li>
220299

221300
</ul>
222301

302+
<!-- Gallery Preview -->
303+
<h3>Gallery</h3>
304+
<p class="gallery-more">We also spend time together on various occasions. For more stories, check out <a href="gallery.html">here</a>!</p>
305+
<div class="gallery-preview">
306+
<div class="gallery-preview-item">
307+
<a href="stories/26_bowling.png" target="_blank">
308+
<img src="stories/26_bowling.png" alt="Bowling Night">
309+
<span class="tooltip">Bowling Night</span>
310+
</a>
311+
</div>
312+
<div class="gallery-preview-item">
313+
<a href="stories/26_post-icml.jpeg" target="_blank">
314+
<img src="stories/26_post-icml.jpeg" alt="post-ICML 2026">
315+
<span class="tooltip">post-ICML 2026</span>
316+
</a>
317+
</div>
318+
<div class="gallery-preview-item">
319+
<a href="stories/25_yearendparty.png" target="_blank">
320+
<img src="stories/25_yearendparty.png" alt="Year-end Party">
321+
<span class="tooltip">Year-end Party</span>
322+
</a>
323+
</div>
324+
<div class="gallery-preview-item">
325+
<a href="stories/25_boardgame.jpeg" target="_blank">
326+
<img src="stories/25_boardgame.jpeg" alt="Board Game Night">
327+
<span class="tooltip">Board Game Night</span>
328+
</a>
329+
</div>
330+
<div class="gallery-preview-item">
331+
<a href="stories/25_openday.jpg" target="_blank">
332+
<img src="stories/25_openday.jpg" alt="LOG Open Day">
333+
<span class="tooltip">LOG Open Day</span>
334+
</a>
335+
</div>
336+
</div>
337+
223338
<!-- Alumni -->
224339
<h3>Alumni</h3>
225340
<p class="alumni">

hiring.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,10 @@ <h1>Lee Optimization Group</h1>
111111
<nav>
112112
<a href="index.html">Home</a>
113113
<a href="research.html">Research</a>
114+
<a href="publications.html">Publications</a>
114115
<a href="group.html">Members</a>
115116
<a href="hiring.html">Hiring</a>
116-
<a href="gallery.html">Gallery</a>
117+
<!-- <a href="gallery.html">Gallery</a> -->
117118
<a href="contact.html">Contact</a>
118119
</nav>
119120
</header>

index.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
a:hover {
7070
text-decoration: underline; /* 마우스 올리면 밑줄 (선택사항) */
7171
}
72+
em {
73+
text-decoration: underline;
74+
}
75+
7276
.logo-title {
7377
display: flex;
7478
align-items: center;
@@ -136,9 +140,10 @@ <h1>Lee Optimization Group</h1>
136140
<nav>
137141
<a href="index.html">Home</a>
138142
<a href="research.html">Research</a>
143+
<a href="publications.html">Publications</a>
139144
<a href="group.html">Members</a>
140145
<a href="hiring.html">Hiring</a>
141-
<a href="gallery.html">Gallery</a>
146+
<!-- <a href="gallery.html">Gallery</a> -->
142147
<a href="contact.html">Contact</a>
143148
</nav>
144149
</header>
@@ -174,8 +179,8 @@ <h3>Recent News</h3>
174179
<ul>
175180

176181
<li>
177-
<strong>Feb 2026 </strong>
178-
Our lab has been selected for the Young Investigator Infrastructure Support Program funded by National Research Foundation of Korea.
182+
<strong>Feb 2026 </strong>
183+
🤝 Our lab has been selected for the NRF Young Investigator Infrastructure Support Program — one of the most competitive grants in Korea. With <em>500M KRW</em> in funding, we will deploy <em>8× NVIDIA H200 GPUs</em> to power our research on extreme compression of hyperscale AI foundation models.
179184
</li>
180185

181186
<li>

0 commit comments

Comments
 (0)