Skip to content

Commit e0b027c

Browse files
committed
Display GPA in education section and update course grades
Added conditional rendering of GPA in the education section template. Updated resume.json to include actual GPA values and course grades for the relevant degrees.
1 parent 3a84745 commit e0b027c

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

_includes/resume/education.liquid

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
</h6>
4141
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem">{{ content.institution }}</h6>
4242
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.area }}</h6>
43+
{% if content.score %}
44+
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem">GPA: {{ content.score }}</h6>
45+
{% endif %}
46+
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.summary }}</h6>
4347
<ul class="items">
4448
{% for item in content.courses %}
4549
<li>

assets/json/resume.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"studyType": "Master's",
2424
"startDate": "2025-08-01",
2525
"endDate": "2027-05-01",
26-
"score": "",
26+
"score": "4.08/4.33",
2727
"summary": "Graduate program focusing on intelligent information systems, NLP research, and AI systems. Conducting research on explainable AI and socially intelligible AI.",
28-
"courses": ["Advanced Natural Language Processing (Grade TBD)",
29-
"Introduction to Question Answering (Grade TBD)",
30-
"Independent Study in Language Technologies (Grade TBD)",
31-
"Directed Study in Language Technologies (Grade TBD)"]
28+
"courses": ["Advanced Natural Language Processing (A+)",
29+
"Introduction to Question Answering (A)",
30+
"Independent Study in Language Technologies (A)",
31+
"Directed Study in Language Technologies (A)"]
3232
},
3333
{
3434
"institution": "University of Southern California",
@@ -38,7 +38,7 @@
3838
"studyType": "Bachelor's",
3939
"startDate": "2021-08-01",
4040
"endDate": "2025-05-01",
41-
"score": "GPA: 3.98/4.00",
41+
"score": "3.98/4.00",
4242
"summary": "Minor in Artificial Intelligence Applications. USC Dornsife Dean's List & USC Viterbi Dean's List (2021-2025). USC Center for Undergraduate Research in Viterbi Engineering (CURVE) fellow with $6,750 in research funding (Spring 2024 - Spring 2025). USC Academic Achievement Award covering $24,000 in tuition.",
4343
"courses": [
4444
"Language Models in Natural Language Processing (A)",

0 commit comments

Comments
 (0)