-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexp.html
43 lines (40 loc) · 1.5 KB
/
exp.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
---
layout: default
title: "Work Experience"
order: 3
---
<div id="accordion">
{% assign data = site.data.cv.experience | sort: 'start' | reverse %}
{% for item in data %}
<div class="card bg-light">
<div class="row mr-0">
<div class="col-md-2 order-md-2 pb-1 text-nowrap">{{ item.start }}{% if item.end %} · {% endif %}{{ item.end }}</div>
<div class="col-10">
<h3>{{ item.position }}</h3>
<div>{{ item.company }}{% if item.location %} · {% endif %}{{ item.location }}</div>
<ul class="keywords">
{% for keyword in item.keywords %}
<li>{{ keyword }} </li>
{% endfor %}
</ul>
</div>
</div>
<div class="" id="card-header-{{forloop.index}}">
<a class="expand-detail" data-toggle="collapse" role="button" aria-expanded="false" data-target="#detail-{{forloop.index}}"
aria-controls="detail-{{forloop.index}}">
Read more ...
</a>
</div>
<div id="detail-{{forloop.index}}" class="collapse" aria-labelledby="card-header-{{forloop.index}}"
data-parent="#accordion">
<div class="card-body pb-1 pt-0">
<ul class="tasks">
{% for task in item.tasks %}
<li>{{ task }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endfor %}
</div>