|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +title: "People" |
| 4 | +--- |
| 5 | + |
| 6 | +<div class="people-page"> |
| 7 | + <h1>People at Northernmost Graph Machine Learning Group</h1> |
| 8 | + |
| 9 | + <section class="faculty"> |
| 10 | + <h2>Faculty Members</h2> |
| 11 | + {% for person in site.data.people.faculty %} |
| 12 | + <div class="person"> |
| 13 | + <img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" /> |
| 14 | + <div class="info"> |
| 15 | + <h3>{{ person.name }}</h3> |
| 16 | + <p>{{ person.bio }}</p> |
| 17 | + <div class="links"> |
| 18 | + {% if person.webpage %}<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage"><i class="fas fa-globe"></i></a>{% endif %} |
| 19 | + {% if person.email %}<a href="mailto:{{ person.email }}" title="Email"><i class="fas fa-envelope"></i></a>{% endif %} |
| 20 | + {% if person.scholar %}<a href="{{ person.scholar }}" target="_blank" title="Google Scholar"><i class="fas fa-graduation-cap"></i></a>{% endif %} |
| 21 | + {% if person.twitter %}<a href="{{ person.twitter }}" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>{% endif %} |
| 22 | + {% if person.linkedin %}<a href="{{ person.linkedin }}" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>{% endif %} |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + {% endfor %} |
| 27 | + </section> |
| 28 | + |
| 29 | + <section class="postdocs"> |
| 30 | + <h2>Postdoc and Researchers</h2> |
| 31 | + {% for person in site.data.people.postdocs %} |
| 32 | + <div class="person"> |
| 33 | + <img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" /> |
| 34 | + <div class="info"> |
| 35 | + <h3>{{ person.name }}</h3> |
| 36 | + <p>{{ person.bio }}</p> |
| 37 | + <div class="links"> |
| 38 | + {% if person.webpage %}<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage"><i class="fas fa-globe"></i></a>{% endif %} |
| 39 | + {% if person.email %}<a href="mailto:{{ person.email }}" title="Email"><i class="fas fa-envelope"></i></a>{% endif %} |
| 40 | + {% if person.scholar %}<a href="{{ person.scholar }}" target="_blank" title="Google Scholar"><i class="fas fa-graduation-cap"></i></a>{% endif %} |
| 41 | + {% if person.twitter %}<a href="{{ person.twitter }}" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>{% endif %} |
| 42 | + {% if person.linkedin %}<a href="{{ person.linkedin }}" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>{% endif %} |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + {% endfor %} |
| 47 | + </section> |
| 48 | + |
| 49 | + <section class="phd-students"> |
| 50 | + <h2>PhD Students</h2> |
| 51 | + {% for person in site.data.people.phd %} |
| 52 | + <div class="person"> |
| 53 | + <img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" /> |
| 54 | + <div class="info"> |
| 55 | + <h3>{{ person.name }}</h3> |
| 56 | + <p>{{ person.bio }}</p> |
| 57 | + <div class="links"> |
| 58 | + {% if person.webpage %}<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage"><i class="fas fa-globe"></i></a>{% endif %} |
| 59 | + {% if person.email %}<a href="mailto:{{ person.email }}" title="Email"><i class="fas fa-envelope"></i></a>{% endif %} |
| 60 | + {% if person.scholar %}<a href="{{ person.scholar }}" target="_blank" title="Google Scholar"><i class="fas fa-graduation-cap"></i></a>{% endif %} |
| 61 | + {% if person.twitter %}<a href="{{ person.twitter }}" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>{% endif %} |
| 62 | + {% if person.linkedin %}<a href="{{ person.linkedin }}" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>{% endif %} |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + {% endfor %} |
| 67 | + </section> |
| 68 | + |
| 69 | + <section class="visitors"> |
| 70 | + <h2>Visitors</h2> |
| 71 | + {% for person in site.data.people.visitors %} |
| 72 | + <div class="person"> |
| 73 | + <img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" /> |
| 74 | + <div class="info"> |
| 75 | + <h3>{{ person.name }}</h3> |
| 76 | + <p>{{ person.bio }}</p> |
| 77 | + <div class="links"> |
| 78 | + {% if person.webpage %}<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage"><i class="fas fa-globe"></i></a>{% endif %} |
| 79 | + {% if person.email %}<a href="mailto:{{ person.email }}" title="Email"><i class="fas fa-envelope"></i></a>{% endif %} |
| 80 | + {% if person.scholar %}<a href="{{ person.scholar }}" target="_blank" title="Google Scholar"><i class="fas fa-graduation-cap"></i></a>{% endif %} |
| 81 | + {% if person.twitter %}<a href="{{ person.twitter }}" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>{% endif %} |
| 82 | + {% if person.linkedin %}<a href="{{ person.linkedin }}" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>{% endif %} |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + </div> |
| 86 | + {% endfor %} |
| 87 | + </section> |
| 88 | +</div> |
| 89 | + |
| 90 | +<style> |
| 91 | +.people-page { |
| 92 | + padding: 20px; |
| 93 | +} |
| 94 | +.person { |
| 95 | + display: flex; |
| 96 | + align-items: center; |
| 97 | + margin-bottom: 20px; |
| 98 | +} |
| 99 | +.profile-pic { |
| 100 | + border-radius: 50%; |
| 101 | + width: 100px; |
| 102 | + height: 100px; |
| 103 | + margin-right: 20px; |
| 104 | +} |
| 105 | +.info { |
| 106 | + flex: 1; |
| 107 | +} |
| 108 | +.links a { |
| 109 | + margin-right: 10px; |
| 110 | + font-size: 1.5em; |
| 111 | +} |
| 112 | +</style> |
0 commit comments