File tree 7 files changed +103
-19
lines changed
7 files changed +103
-19
lines changed Original file line number Diff line number Diff line change 1
1
{{ " " }}
2
2
< div class ="card " data-style ="{{ include.style }} " style ="width: 100%; ">
3
- < div class ="card-img " style ="aspect-ratio: 5.0; overflow: hidden; ">
4
- < a
5
- {% if include.link %}
6
- href ="{{ include.link | relative_url }} "
7
- {% endif %}
8
- aria-label ="{{ include.title | default: "card link " }}"
9
- class="card-image "
10
- >
11
- < img
12
- src ="{{ include.image | relative_url }} "
13
- alt ="{{ include.title | default: "card image " }}"
14
- loading="lazy "
15
- style ="width: 100%; height: auto; object-fit: contain; "
16
- {% include fallback.html %}
17
- >
18
- </ a >
19
- </ div >
3
+
20
4
21
5
< div class ="card-text ">
22
6
{% if include.title %}
36
20
{% if include.subtitle %}
37
21
< span class ="card-subtitle "> {{ include.subtitle }}</ span >
38
22
{% endif %}
23
+ </ div >
39
24
25
+ < div class ="card-img " style ="aspect-ratio: 5.0; overflow: hidden; ">
26
+ < a
27
+ {% if include.link %}
28
+ href ="{{ include.link | relative_url }} "
29
+ {% endif %}
30
+ aria-label ="{{ include.title | default: "card link " }}"
31
+ class="card-image "
32
+ >
33
+ < img
34
+ src ="{{ include.image | relative_url }} "
35
+ alt ="{{ include.title | default: "card image " }}"
36
+ loading="lazy "
37
+ style ="width: 100%; height: auto; object-fit: contain; "
38
+ {% include fallback.html %}
39
+ >
40
+ </ a >
41
+ </ div >
42
+
43
+ < div class ="card-description ">
40
44
{% if include.description %}
41
45
< p >
42
46
{{ include.description | markdownify | remove: "< p > " | remove: "</ p > " }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Kanghoon Lee
3
3
image : people_photos/default.png
4
4
role : visiting
5
5
affiliation : KAIST
6
- order : 041
6
+ order : 901
7
7
aliases :
8
8
- K. Lee
9
9
- K Lee
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Marvin Gao
3
+ image : people_photos/marvingao.jpg
4
+ role : visiting
5
+ affiliation : JHU
6
+ order : 902
7
+ aliases :
8
+ - M. Gao
9
+ - M Gao
10
+ links :
11
+ # people-homepage: https://jyao97.github.io/
12
+
13
+ # people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ
14
+ # people-office: 344 Winston Chung Hall (WCH)
15
+ display_1 : ' M.S. Student at JHU'
16
+ display_2 : ' Summer 2024 -- Present'
17
+ ---
Original file line number Diff line number Diff line change 1
1
---
2
2
name : Moustafa Soliman
3
- image : people_photos/default.png
3
+ image : people_photos/moustafa.jpg
4
4
role : under
5
5
affiliation : UC Riverside
6
6
order : 030
Original file line number Diff line number Diff line change
1
+ ---
2
+ ---
3
+
4
+ .card {
5
+ display : inline-flex ;
6
+ justify-content : stretch ;
7
+ align-items : center ;
8
+ flex-direction : column ;
9
+ width : 350px ;
10
+ max-width : calc (100% - 20px - 20px );
11
+ margin : 20px ;
12
+ background : var (--background );
13
+ border-radius : var (--rounded );
14
+ overflow : hidden ;
15
+ box-shadow : var (--shadow );
16
+ vertical-align : top ;
17
+ }
18
+
19
+ .card [data-style = " small" ] {
20
+ width : 250px ;
21
+ }
22
+
23
+ .card-image img {
24
+ aspect-ratio : 3 / 2 ;
25
+ object-fit : cover ;
26
+ width : 100% ;
27
+ // box-shadow: var(--shadow);
28
+ }
29
+
30
+ .card-text {
31
+ display : inline-flex ;
32
+ justify-content : flex-start ;
33
+ align-items : center ;
34
+ flex-direction : column ;
35
+ gap : 20px ;
36
+ max-width : 100% ;
37
+ padding : 20px ;
38
+ }
39
+
40
+ .card-description {
41
+ display : inline-flex ;
42
+ justify-content : flex-start ;
43
+ align-items : center ;
44
+ flex-direction : column ;
45
+ gap : 20px ;
46
+ max-width : 96% ;
47
+ padding : 20px ;
48
+ }
49
+
50
+ .card-text > * {
51
+ margin : 0 !important ;
52
+ }
53
+
54
+ .card-title {
55
+ font-family : var (--heading );
56
+ font-size : var (--large );
57
+ font-weight : var (--semi-bold );
58
+ }
59
+
60
+ .card-subtitle {
61
+ margin-top : -10px !important ;
62
+ font-style : italic ;
63
+ }
You can’t perform that action at this time.
0 commit comments