-
Notifications
You must be signed in to change notification settings - Fork 1
/
committee.html
134 lines (132 loc) · 5.16 KB
/
committee.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
---
layout: default
leaderships:
2021:
- name: Yvonne Meng
ch-name: 孟憲薇
image-url: /assets/img/committee/yvonne-meng.jpg
position: Sr. Group Leader, Entrada Therapeutics
current:
- name: Erica Cai
ch-name: 蔡佩珊
image-url: /assets/img/committee/erica-cai.jpg
position: Research Fellow, Joslin Diabetes Center
current:
2020:
- name: Margaret (Chia-Ying) Wey
ch-name:
image-url: /assets/img/committee/margaret_wey.jpg
position: Clinical Research Scientist, Epizyme
current:
- name: Jerry (Chih-Chung) Lin
ch-name:
image-url: /assets/img/committee/jerry_lin.jpg
position: Postdoctoral fellow, Massachusetts General Hospital
current:
2019:
- name: Yung-Chih Cheng
ch-name:
image-url: /assets/img/committee/yung-chih_cheng.jpg
position: Senior Scientist, Q-State Biosciences
current:
- name: Chih-Chi (Jimmy) Chu
ch-name:
image-url: /assets/img/committee/chih-chi_chu.jpg
position: Scientist I, bluebird bio
current:
2018:
- name: Yung-Chi Huang
ch-name: 黃詠琪
image-url: /assets/img/committee/yung-chi_huang.jpg
position: Postdoctoral Fellow, Massachusetts Institute of Technology
current:
- name: I-Ju Lee
ch-name: 李以如
image-url: /assets/img/committee/i-ju_lee.jpg
position: Research Fellow, Dana-Farber Cancer Institute
current:
2017:
- name: Hsiao-Ying (Monica) Wey
ch-name: 魏曉英
image-url: /assets/img/committee/hsiao-ying_wey.jpg
position: Assistant Professor, The MGH/HST Martinos Center for Biomedical Imaging
current:
- name: Tzu-Hsing (April) Kuo
ch-name: 郭姿杏
image-url: /assets/img/committee/tzu-hsing_kuo.jpg
position: Scientist, Molecular and Cell Biology, Acceleron Pharma
current:
2016:
- name: Ying-Ja (Inca) Chen
ch-name: 陳映嘉
image-url: /assets/img/committee/ying-ja_chen.jpg
position: Patent Agent Axcella Heath
current: Vice Director, Bioinformatics and AI / IP Manager at ACT Genomics
- name: Jay (Chih-Chieh) Wang
ch-name: 王志傑
image-url: /assets/img/committee/jay_wang.jpg
position: Postdoctoral Fellow at Harvard Medical School
current: Scientist at Cygnal Therapeutics
2015:
- name: Sherry Lee
ch-name: 李湘盈
image-url: /assets/img/committee/sherry_lee.jpg
position: Postdoctoral Fellow at MIT
current: Assistant Professor at Beijing University
- name: Fu-Kai Hsieh
ch-name: 謝富凱
image-url: /assets/img/committee/fu-kai_hsieh.jpg
position: Research Fellow at Massachusetts General Hospital
current:
2014:
- name: Ho-Chou Tu
ch-name: 杜荷洲
image-url: /assets/img/committee/ho-chou_tu.jpg
position: Research Fellow at Children's Hospital Boston
current: Senior Scientist at Alnylam Pharmaceuticals
- name: Ching-Han (Hannah) Shen
ch-name: 沈敬涵
image-url: /assets/img/committee/hannah_shen.jpg
position: Graduate student at Harvard University
current: Associate Director at BridgeBio
2013:
- name: Sheng-Hong Chen
ch-name: 陳昇宏
image-url: /assets/img/committee/sheng-hong_chen.jpg
position: Postdoctoral Fellow at Harvard Medical School
current: Principal Investigator at Academia Sinica, Taiwan
---
<div class="row align-items-center py-auto my-auto py-md-5 my-md-5">
<div class="col-12 col-md col-lg-5">
<h1 class="display-1">
Our Leaderships
</h1>
</div>
<div class="col-12 col-md">
<hr>
<!-- <img src="{{ "/assets/img/btba_logo.png" | absolute_url }}" alt="BTBA logo" class="float-left p-4" width="150"> -->
<p class="">
Our organization is constituted by passionate volunteers and led by two co-chairs on a one-year-term basis. We always welcome people to join and help make the Taiwanese biotech community thrive!
</p>
</div>
</div>
<hr class="mt-5 mb-4" />
{% for item in page.leaderships %}
<h2 class="mt-5 mb-3">{{ item[0] | capitalize }}</h2>
<div class="row">
{% for person in item[1] %}
<div class="col-sm-6 row mb-2">
<div class="col-4">
<img src="{{ person.image-url | absolute_url }}" class="img-fluid w-100" alt="{{ person.name }}">
</div>
<div class="col-8">
<h4><strong>{{ person.name }} {{ person.ch-name }}</strong></h4>
<p>{{ person.position }}</p>
{% if person.current %}
<p>Current - {{ person.current }}</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
{% endfor %}