2018-06-27 20:34:06 -04:00
|
|
|
{% if site.data.data.experiences %}
|
2016-07-29 00:47:42 -04:00
|
|
|
<section class="section experiences-section">
|
2018-07-25 09:34:10 -04:00
|
|
|
<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>
|
|
|
|
{{ site.data.data.experiences.title }}
|
|
|
|
</h2>
|
2017-10-29 10:15:35 -04:00
|
|
|
|
2018-07-25 12:40:47 -04:00
|
|
|
{% for experience in site.data.data.experiences.experiences %}
|
2017-10-29 10:15:35 -04:00
|
|
|
<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">
|
2018-07-25 12:40:47 -04:00
|
|
|
{{ experience.details | markdownify }}
|
2017-10-29 10:15:35 -04:00
|
|
|
</div><!--//details-->
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div><!--//item-->
|
2018-07-25 12:40:47 -04:00
|
|
|
{% endfor %}
|
2017-10-29 10:15:35 -04:00
|
|
|
|
|
|
|
</section><!--//section-->
|
2017-10-29 11:12:08 -04:00
|
|
|
{% endif %}
|
2018-06-28 04:51:12 -04:00
|
|
|
|