forked from robert/robertjohnson.work
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
This commit is contained in:
@ -1,13 +1,15 @@
|
||||
<div class="education-container container-block">
|
||||
<h2 class="container-block-title">Education</h2>
|
||||
<div class="item">
|
||||
<h4 class="degree">MSc in Computer Science</h4>
|
||||
<h5 class="meta">University of London</h5>
|
||||
<div class="time">2011 - 2012</div>
|
||||
</div><!--//item-->
|
||||
<div class="item">
|
||||
<h4 class="degree">BSc in Applied Mathematics</h4>
|
||||
<h5 class="meta">Bristol University</h5>
|
||||
<div class="time">2007 - 2011</div>
|
||||
</div><!--//item-->
|
||||
</div><!--//education-container-->
|
||||
{% 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 %}
|
||||
|
Reference in New Issue
Block a user