-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_experience.html
27 lines (27 loc) · 1.17 KB
/
template_experience.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
<div class="section-box">
<div class="row">
<div class="col">
<div class="row"><div class="col"><strong>{{item.title}}</strong></div></div>
<div class="row"><div class="col"><a href="{{item.url}}">{{item.organization}}</a></div></div>
<div class="row">
{% if item.date_obtained %}
<div class="col">{{item.date_obtained}}</div>
{% elif item.date_until == "Present" %}
<div class="col">{{item.date_from}} - <strong>present</strong></div>
{% else %}
<div class="col">
{{item.date_from}} - {{item.date_until}}</span>{% if item.duration %}<br>[{{item.duration}}]{% endif %}
</div>
{% endif %}
</div>
{% if item.tags %}
<div class="row"><div class="col" style="padding: 0.5rem;">
{% for tag in item.tags|sort %}<div class="tag"> {{ tag }} </div>{% endfor %}
</div></div>
{% endif %}
</div>
{% if item.description %}
<div class="col-9">{{item.description}}</div>
{% endif %}
</div>
</div>