Skip to content

Commit

Permalink
added possibility to move an existing profile to alumni
Browse files Browse the repository at this point in the history
  • Loading branch information
romsto committed Dec 9, 2024
1 parent 20f1831 commit 4064442
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Content:
short_name: <filename>
name: Family First
korean_name:
position: <M.S. Student | Integrated M.S./Ph.D. Student | Ph.D. Student | Professor> (Please respect the exact format)
position: <M.S. Student | Integrated M.S./Ph.D. Student | Ph.D. Student | Professor | Alumni (M.S.) | Alumni (Ph.D.)> (Please respect the exact format)
department: Department of Computer Science and Engineering
interests:
- "Interest 1"
Expand All @@ -70,6 +70,7 @@ mail: <your mail>
website: [Optional] <your website>
office: <your office>
photo: <file name with extension under _assets/images/people>
thesis: [Optional] <Title of your thesis>
---
[Optional] Biography or whatever you want in the markdown format
```
Expand All @@ -83,6 +84,7 @@ To add alumnis, please head to `_data/alumnis.yml` and follow the same format as
- name: FirstName FamilyName
year: 20..
website: [Optional] <URL to personal webpage>
profile: [Optional] If the profile in .md exists, put the name of the file here without the extension
- name: FirstName2 FamilyName2
year: 20..
```
Expand Down
6 changes: 5 additions & 1 deletion _data/people.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@
- name: Integrated M.S./Ph.D. Student
category: Integrated M.S./Ph.D. Students
- name: M.S. Student
category: M.S. Students
category: M.S. Students
- name: Alumni (M.S.)
category: Alumni (M.S.)
- name: Alumni (Ph.D.)
category: Alumni (Ph.D.)
3 changes: 3 additions & 0 deletions _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
{% assign last_name = page.name | split: ' ' | last %}
<h1 class="name">{{ first_name }}, {{ last_name }} ({{ page.korean_name }})</h1>
<div class="main-info">
{% if page.thesis %}
<p><strong>Thesis</strong>: {{ page.thesis }}</p>
{% endif %}
<p>{{ page.position }}</p>
<p>{{ page.department }}</p>
</div>
Expand Down
5 changes: 3 additions & 2 deletions _people/storair.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ interests:
- "Adaptive Computation"
- "LLM Inference"
education:
- "M.S. in Computer Science and Engineering, Seoul National University 2023~"
- "M.Eng. in Computer Science (Dual Degree), IMT Mines Alès (France) 2021~"
- "M.S. in Computer Science and Engineering, Seoul National University 2023~2025"
- "M.Eng. in Computer Science (Dual Degree), IMT Mines Alès (France) 2021~2025"
mail: [email protected]
website: "https://rstr.fr/"
photo: storair.jpg
timestamp: 2023-2-4
thesis: "Targeting Token Complexity in Transformers during Inference"
---
13 changes: 10 additions & 3 deletions people.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
<h1 class="category">LDILab's Family</h1>
<div class="people">
{% for category in site.data.people %}
{% if category.category contains "Alumni" %}
{% continue %}
{% endif %}
<div class="people-content">
<div class="people-category">{{ category.category }}</div>
<div class="people-list">
Expand Down Expand Up @@ -54,10 +57,14 @@ <h1 class="category">LDILab's Family</h1>
<div class="people-category-alumni">Alumni ({{ alumnis-type.type }})</div>
<div class="people-list">
{% for alumni in alumnis-type.alumnis %}
{% if alumni.website %}
<a class="alumni" href="{{ alumni.website }}"> {{ alumni.name }}, {{ alumnis-type.type }} ({{ alumni.year }})</a>
{% if alumni.profile %}
<a class="alumni" href="{{ site.url }}{{ site.baseurl }}/person/{{ alumni.profile }}"> {{ alumni.name }}, {{ alumnis-type.type }} ({{ alumni.year }})</a>
{% else %}
<div class="alumni">{{ alumni.name }}, {{ alumnis-type.type }} ({{ alumni.year }})</div>
{% if alumni.website %}
<a class="alumni" href="{{ alumni.website }}"> {{ alumni.name }}, {{ alumnis-type.type }} ({{ alumni.year }})</a>
{% else %}
<div class="alumni">{{ alumni.name }}, {{ alumnis-type.type }} ({{ alumni.year }})</div>
{% endif %}
{% endif %}
{% endfor %}
</div>
Expand Down

0 comments on commit 4064442

Please sign in to comment.