scottjohnson.pro/_includes/education.html
Nelson Estevão a0349345d5 Added _data folder in order to became easier to change profile information
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
2017-10-29 13:58:55 +00:00

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