forked from sharu725/online-cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
experiences.html
37 lines (28 loc) · 897 Bytes
/
experiences.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
{% assign experiences = site.data.data.experiences %}
{% if experiences %}
<section class="section experiences-section">
<h2 class="section-title">
<span class="fa-stack fa-xs">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-briefcase fa-stack-1x fa-inverse"></i>
</span>
Experiences
</h2>
{% for experience in experiences %}
<div class="item">
<div class="meta">
<div class="upper-row">
<h3 class="job-title">{{ experience.role }}</h3>
<div class="time">{{ experience.time }}</div>
</div><!--//upper-row-->
<div class="company">{{ experience.company }}</div>
</div><!--//meta-->
{% if experience.details %}
<div class="details">
{{ experience.details | markdownify }}
</div><!--//details-->
{% endif %}
</div><!--//item-->
{% endfor %}
</section><!--//section-->
{% endif %}