robertjohnson.work/_includes/experience.html

38 lines
939 B
HTML
Raw Normal View History

{% if site.data.data.experiences %}
2016-07-29 10:17:42 +05:30
<section class="section experiences-section">
2018-06-28 14:21:12 +05:30
<h2 class="section-title"><i class="fa fa-briefcase"></i>{{site.data.data.experiences.title}}</h2>
2017-10-29 14:15:35 +00:00
{% for experience in site.data.data.experiences.experiences %}
2017-10-29 14:15:35 +00: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">
<p>{{ experience.details }}</p>
{% if experience.bullets %}
<ul>
{% for bullet in experience.bullets %}
<li>{{ bullet }}</li>
{% endfor %}
</ul>
{% endif %}
2017-10-29 14:15:35 +00:00
</div><!--//details-->
{% endif %}
</div><!--//item-->
{% endfor %}
</section><!--//section-->
2017-10-29 15:12:08 +00:00
{% endif %}
2018-06-28 14:21:12 +05:30