forked from rahulgopinath/rahulgopinath.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
academics.html
56 lines (52 loc) · 1.64 KB
/
academics.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
---
layout: page
title : Academics
header : Academics
group: navigation
weight: 7
menu: Academics
---
<h3> Instructor </h3>
<div class="posts">
<ul>
{% for post in site.posts %}
{% capture mytags%}{{ post.tags | first | split:" " | first }}{% endcapture %}
{% if mytags == 'instructor' %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a> {{ post.e }}</li>
{% endif %}
{% endfor %}
</ul>
</div>
<h3> Teaching Assistant </h3>
<div class="posts">
<ul>
{% for post in site.posts %}
{% capture mytags%}{{ post.tags | first | split:" " | first }}{% endcapture %}
{% if mytags == 'ta' %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a> {{ post.e }}</li>
{% endif %}
{% endfor %}
</ul>
</div>
<h3> Graduated Students </h3>
<div class="posts">
<ul>
{% for post in site.posts %}
{% capture mytags%}{{ post.tags | first | split:" " | first }}{% endcapture %}
{% if mytags == 'student' %}
<li><span>{{ post.date | date_to_string }}</span> » {{ post.title }} <br/> Thesis: <a href="{{ BASE_PATH }}{{ post.url }}"> {{ post.e }} </a></li>
{% endif %}
{% endfor %}
</ul>
</div>
<h3>Ph.D. Member of Examination Board</h3>
<div class="posts">
<ul>
{% for post in site.posts %}
{% capture mytags%}{{ post.tags | first | split:" " | first }}{% endcapture %}
{% if mytags == 'phdcommittee' %}
<li><span>{{ post.date | date_to_string }}</span> » {{ post.title }} <br/> Thesis: <a href="{{ BASE_PATH }}{{ post.url }}"> {{ post.e }} </a></li>
{% endif %}
{% endfor %}
</ul>
</div>