robertjohnson.work/_includes/education-section.html

30 lines
717 B
HTML
Raw Normal View History

{% if site.data.educations %}
<section class="section educations-section">
<h2 class="section-title"><i class="fa fa-graduation-cap"></i>Education</h2>
{% for education in site.data.educations %}
<div class="item">
<div class="meta">
<div class="upper-row">
<h3 class="degree">{{ education.degree }}</h3>
<div class="time">{{ education.time }}</div>
</div><!--//upper-row-->
<div class="university">{{ education.university }}</div>
</div><!--//meta-->
{% if education.details %}
<div class="details">
<p>{{ education.details }}</p>
</div><!--//details-->
{% endif %}
</div><!--//item-->
{% endfor %}
</section><!--//section-->
{% endif %}