Skip to content

Commit 06ddd1f

Browse files
committed
gpa renamed to gpa_us and gpa_de added
1 parent 1def8b5 commit 06ddd1f

File tree

2 files changed

+38
-7
lines changed

2 files changed

+38
-7
lines changed

_includes/pro/resume/education.html

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
2+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
3+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
4+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
5+
16
{% if resume.education.size > 0 %}
27
<section>
38
<div class="npb">
@@ -32,10 +37,14 @@ <h3 class="h4 faded" {% if edu.endDate.size>
3237
endcapture %} {% capture area %}<span class="bc"> {{ edu.area }}</span>{% endcapture %} {% capture institution
3338
%}<span class="bc" {% if edu.endDate.size>
3439
0 %}property="name"{% endif %}>
35-
<a href="{{edu.url}}">{{ edu.institution }}</a> </span>{% endcapture %} {% capture gpa %}<span class="bc">{{
36-
edu.gpa }}</span>{% endcapture %}
40+
<a href="{{edu.url}}">{{ edu.institution }}</a> </span>{% endcapture %}
41+
{% capture gpa_us %}<span class="bc">{{ edu.gpa_us }}</span>{% endcapture %}
42+
{% capture gpa_de %}<span class="bc">{{ edu.gpa_de }}</span>{% endcapture %}
3743
<span>
38-
{{study_type}} in {{area}} from {{institution}} with GPA of {{gpa}}
44+
{{study_type}} in {{area}} from {{institution}} with GPA of {{gpa_us}}
45+
<button type="button" class="btn btn-info btn-sm" data-toggle="modal" data-target="#gpaInfoModal">
46+
<i class="fas fa-info-circle"></i>
47+
</button>
3948
</span>
4049
</h3>
4150
</header>
@@ -53,4 +62,24 @@ <h4 class="sr-only">{{ strings.resume.courses | default:"Courses" }}</h4>
5362
</div>
5463
{% endif %} {% endfor %}
5564
</section>
56-
{% endif %}
65+
{% endif %}
66+
67+
<!-- GPA Info Modal -->
68+
<div class="modal fade" id="gpaInfoModal" tabindex="-1" role="dialog" aria-labelledby="gpaInfoModalLabel" aria-hidden="true">
69+
<div class="modal-dialog" role="document">
70+
<div class="modal-content">
71+
<div class="modal-header">
72+
<h5 class="modal-title" id="gpaInfoModalLabel">GPA Information</h5>
73+
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
74+
<span aria-hidden="true">&times;</span>
75+
</button>
76+
</div>
77+
<div class="modal-body">
78+
The GPA (Grade Point Average) is a standard way of measuring academic achievement in the U.S. The German GPA is calculated differently and typically ranges from 1.0 (best) to 5.0 (worst). Here, the US GPA is {{ edu.gpa_us }} and the German GPA is {{ edu.gpa_de }}.
79+
</div>
80+
<div class="modal-footer">
81+
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
82+
</div>
83+
</div>
84+
</div>
85+
</div>

resume-english.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,15 +250,17 @@ resume:
250250
studyType: 'Master of Engineering'
251251
startDate: '2019-04-01'
252252
endDate: ''
253-
gpa: 'N/A'
253+
gpa_us: 'N/A'
254+
gpa_de: 'N/A'
254255
url: https://www.hsm-fernstudium.de/masterstudiengaenge/angewandte-kunststofftechnik-meng
255256

256257
- institution: 'Duale Hochschule Gera Eisenach'
257258
area: 'Polymer Engineering'
258259
studyType: 'Bachelor of Engineering'
259260
startDate: '2015-10-01'
260261
endDate: '2018-09-30'
261-
gpa: 1.6
262+
gpa_us: 3.3
263+
gpa_de: 1.6
262264
url: 'https://www.dhge.de/DHGE/Studieninteressierte/Studieng-nge/Detail~Technik~Kunststofftechnik-Bachelor-of-Engineering~.html'
263265

264266
# # Projects
@@ -349,4 +351,4 @@ resume:
349351
fluency: 'native-speaker'
350352
- language: 'English'
351353
fluency: 'professional-working-proficiency'
352-
---
354+
---

0 commit comments

Comments
 (0)