forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c80b159
commit 4fdca79
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
--- | ||
layout: page | ||
title: Current Students & Alumni | ||
--- | ||
|
||
<style> | ||
.profile-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
margin-top: 20px; | ||
} | ||
.profile { | ||
text-align: center; | ||
margin: 10px; | ||
} | ||
.profile img { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
border: 2px solid #007bff; | ||
object-fit: cover; | ||
} | ||
.profile a { | ||
display: block; | ||
margin-top: 8px; | ||
color: #007bff; | ||
text-decoration: none; | ||
} | ||
</style> | ||
|
||
<h2>Current Students:</h2> | ||
<div class="profile-container"> | ||
<!-- Example student profile --> | ||
<div class="profile"> | ||
<img src="/assets/img/student/AmanPriyanshuCropped.jpg" alt="Aman Priyanshu"> | ||
<a href="https://amanpriyanshu.github.io/" target="_blank">Aman Priyanshu</a> | ||
</div> | ||
<div class="profile"> | ||
<img src="/assets/img/student/yash" alt="Yash Maurya"> | ||
<a href="https://yashmaurya.com/" target="_blank">Yash Maurya</a> | ||
</div> | ||
<div class="profile"> | ||
<img src="/assets/img/student/suriya.jpg" alt="Suriya Ganesh"> | ||
<a href="https://www.linkedin.com/in/suriya-ganesh/" target="_blank">Suriya Ganesh</a> | ||
</div> | ||
<div class="profile"> | ||
<img src="/assets/img/student/limin" alt="Limin Ge"> | ||
<a href="https://www.linkedin.com/in/limin-ge-573b4b28a/" target="_blank">Limin Ge</a> | ||
</div> | ||
<div class="profile"> | ||
<img src="/assets/img/student/zuofei" alt="Zuofei Hong"> | ||
<a href="https://www.linkedin.com/in/zuofei-hong-832ab719b/" target="_blank">Zuofei Hong</a> | ||
</div> | ||
<div class="profile"> | ||
<img src="/assets/img/student/zuofei" alt="Zuofei Hong"> | ||
<a href="https://www.linkedin.com/in/zuofei-hong-832ab719b/" target="_blank">Zuofei Hong</a> | ||
</div> | ||
<div class="profile"> | ||
<img src="/assets/img/student/Jingxin.jpg" alt="Jingxin Shi"> | ||
<a href="https://www.linkedin.com/in/jingxinshi/" target="_blank">Jingxin Shi</a> | ||
</div> | ||
<!-- Add more student profiles here --> | ||
</div> | ||
|
||
<h2>Alumni:</h2> | ||
<div class="profile-container"> | ||
<!-- Example alumni profile --> | ||
<div class="profile"> | ||
<img src="/path/to/alumni-image.jpg" alt="Alumni Name"> | ||
<a href="https://www.linkedin.com/in/alumni" target="_blank">Alumni Name</a> | ||
</div> | ||
<!-- Add more alumni profiles here --> | ||
</div> |