-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
46 lines (45 loc) · 1.7 KB
/
work.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
---
title : work
keywords : work, internships, positions-of-responsibility
type : {"research" : "Research Assistantships / Internships:", "industry" : "Industrial Internships (during summer terms while at BITS Pilani):", "ta" : "Teaching Assistantships:", "others" : "Other Managerial Positions:"}
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<div>
<div style="height : 100%">
{% include sidebar-nav.html %}
<div class="content-area">
<div class="work-main-hi"><img class="work-main-icon" src="/assets/img/bc.svg" >work</div>
<div class="work-main-meta"><br></div>
{% assign wrks = site.work | sort: "date" | reverse %}
{% for t in page.type %}
<div class="work-main-meta">
{{t.last}}
</div>
<div class="work-main-index">
{% for work in wrks %}
{% assign type = work.type %}
{% if type == t.first %}
<div class="work-main-entry">
<img src="/assets/img/{{work.logo}}" class="work-main-entry-logo">
<div class="work-main-entry-text">
<div class="work-main-entry-text-org">{{work.post}} @ <a target="_blank" href="{{work.webpage}}">{{work.organization}}</a></div>
<div class="work-main-entry-text-loc">{{work.location}}</div>
<div class="work-main-entry-text-dat">{{ work.date | date : "%B %Y" }} {% if work.enddate %} - {{ work.enddate | date : "%B %Y" }} {% else %} (ongoing){%endif%}</div>
</div>
{% for para in work.desc%}
<div class="work-main-entry-text-desc">{{para}}</div>
{% endfor %}
</div>
{% endif %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
{% include content_animation_script.html %}
</body>
</html>