robertjohnson.work/_includes/experience.html
Daniel Lanciana ec782ce7bf Add additional fields (#72)
* Update data.yml
> removing extra lines

* Added a second paragraph example

* Added codewars text to sidebar
2018-07-20 16:32:41 +01:00

38 lines
939 B
HTML

{% if site.data.data.experiences %}
<section class="section experiences-section">
<h2 class="section-title"><i class="fa fa-briefcase"></i>{{site.data.data.experiences.title}}</h2>
{% for experience in site.data.data.experiences.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">
<p>{{ experience.details }}</p>
{% if experience.bullets %}
<ul>
{% for bullet in experience.bullets %}
<li>{{ bullet }}</li>
{% endfor %}
</ul>
{% endif %}
</div><!--//details-->
{% endif %}
</div><!--//item-->
{% endfor %}
</section><!--//section-->
{% endif %}