diff --git a/_includes/selected_papers.html b/_includes/selected_papers.html
index 61457db..82f473d 100644
--- a/_includes/selected_papers.html
+++ b/_includes/selected_papers.html
@@ -1,5 +1,5 @@
-
selected publications
+ publications
{% bibliography -f papers -q @*[selected=true]* %}
diff --git a/_pages/about.md b/_pages/about.md
index 210a552..b2d99c0 100644
--- a/_pages/about.md
+++ b/_pages/about.md
@@ -9,14 +9,14 @@ profile:
image_cicular: false # crops the image to make it circular
news: true # includes a list of news items
-social: false # includes social icons at the bottom of the page
+social: false # includes social icons at the bottom of the selected_papers: true
---
[\[Google Scholar\]](https://scholar.google.com/citations?user=vkm0OSoAAAAJ&hl=en) [\[Download CV\]](https://drive.google.com/file/d/1GPf-75I7dchSuVe8-0HYK-kmRek1Rr6t/view?usp=sharing)
-I’m currently a Ph.D. student in Electrical Engineering at Yonsei University advised by [Prof. Seung Ah Lee](https://sites.google.com/oisl.me/oisl/) with my research centered on computational optics and imaging. During my Ph.D. studies, I had the opportunity to work with [Prof. Roarke Horstmeyer](http://horstmeyer.pratt.duke.edu/) in the Biomedical Engineering department at Duke University. I am a recipient of the Silver Prize at the [28th Samsung Humantech Paper Awards](https://humantech.samsung.com/saitext/index.jsp) and Graduate Research Fellowships from [NRF](https://www.nrf.re.kr/eng/index) and [MOHW](https://www.mohw.go.kr/eng/index.jsp).
+I’m currently a Ph.D. student in Electrical Engineering at Yonsei University advised by [Prof. Seung Ah Lee](https://sites.google.com/oisl.me/oisl/) with my research centered on computational optics and imaging. During my Ph.D. studies, I had the opportunity to be mentored by [Prof. Roarke Horstmeyer](http://horstmeyer.pratt.duke.edu/) in the Biomedical Engineering department at Duke University. I've been honored to receive the Silver Prize at the [28th Samsung Humantech Paper Awards](https://humantech.samsung.com/saitext/index.jsp) and Graduate Research Fellowships from the [NRF](https://www.nrf.re.kr/eng/index) and [MOHW](https://www.mohw.go.kr/eng/index.jsp).
-My research interests are broadly in computational optics and imaging, with a particular emphasis on the co-design the optical hardware and image processing software aiming to create advanced imaging system for real-world applications. I have extensive experience in mask-based lensless imaging, Fourier ptychography, and in-vivo imaging using speckle dynamics. I enjoy chats and collaborative works with individuals who share a passion for their work :)
+My research interests lie broadly in computational optics and imaging, with a particular emphasis on co-designing optical hardware and image processing software aiming to create advanced imaging systems for real-world applications. I have extensive experience in mask-based lensless imaging, Fourier ptychography, and in-vivo imaging using speckle dynamics. I enjoy chats and collaborative works with individuals who share a passion for their work :)
diff --git a/news.html b/news.html
new file mode 100644
index 0000000..307e532
--- /dev/null
+++ b/news.html
@@ -0,0 +1,31 @@
+
+
+
news
+ {% if site.news != blank -%}
+ {%- assign news_size = site.news | size -%}
+
3 %}style="max-height: 10vw"{% endif %}>
+
+ {%- assign news = site.news | reverse -%}
+ {% if site.news_limit %}
+ {% assign news_limit = site.news_limit %}
+ {% else %}
+ {% assign news_limit = news_size %}
+ {% endif %}
+ {% for item in news limit: news_limit %}
+
+ {{ item.date | date: "%b %-d, %Y" }} |
+
+ {% if item.inline -%}
+ {{ item.content | remove: ' ' | remove: ' ' | emojify }}
+ {%- else -%}
+ {{ item.title }}
+ {%- endif %}
+ |
+
+ {%- endfor %}
+
+
+ {%- else -%}
+
No news so far...
+ {%- endif %}
+