forked from robert/robertjohnson.work
a0349345d5
It was also added Education as a variable and now its easier to make it appear or not as well to change information on educations.yml
16 lines
448 B
HTML
16 lines
448 B
HTML
{% if site.data.educations %}
|
|
<div class="education-container container-block">
|
|
|
|
<h2 class="container-block-title">Education</h2>
|
|
|
|
{% for education in site.data.educations %}
|
|
<div class="item">
|
|
<h4 class="degree">{{ education.degree }}</h4>
|
|
<h5 class="meta">{{ education.university }}</h5>
|
|
<div class="time">{{ education.time }}</div>
|
|
</div><!--//item-->
|
|
{% endfor %}
|
|
|
|
</div><!--//education-container-->
|
|
{% endif %}
|