Initial commits and git hooks
This commit is contained in:
29
cv.bryanroessler.com/_includes/experience.html
Normal file
29
cv.bryanroessler.com/_includes/experience.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% if site.data.experiences %}
|
||||
<section class="section experiences-section">
|
||||
<h2 class="section-title"><i class="fa fa-briefcase"></i>Experiences</h2>
|
||||
|
||||
{% for experience in site.data.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>
|
||||
</div><!--//details-->
|
||||
{% endif %}
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user