scottjohnson.pro/_includes/education-section.html
Stefan Forstenlechner 1cee9a16d5 added publications and education in main; more config
added config option to remove about section in sidebar
added config option to not show education in main (as it is shown in the sidebar anyway)
increased with of sidebar for longer names
reduced padding for footer
2018-02-07 17:14:17 +00:00

30 lines
717 B
HTML

{% 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 %}