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
+
1
6
{% if resume.education.size > 0 %}
2
7
< section >
3
8
< div class ="npb ">
@@ -32,10 +37,14 @@ <h3 class="h4 faded" {% if edu.endDate.size>
32
37
endcapture %} {% capture area %}< span class ="bc "> {{ edu.area }}</ span > {% endcapture %} {% capture institution
33
38
%}< span class ="bc " {% if edu.endDate.size >
34
39
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 %}
37
43
< 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 >
39
48
</ span >
40
49
</ h3 >
41
50
</ header >
@@ -53,4 +62,24 @@ <h4 class="sr-only">{{ strings.resume.courses | default:"Courses" }}</h4>
53
62
</ div >
54
63
{% endif %} {% endfor %}
55
64
</ 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 "> ×</ 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 >
0 commit comments