diff --git a/_data/educations.yml b/_data/educations.yml new file mode 100644 index 0000000..0cc16bc --- /dev/null +++ b/_data/educations.yml @@ -0,0 +1,8 @@ +- education: + degree: MSc in Computer Science + university: University of London + time: 2011 - 2012 +- education: + degree: BSc in Applied Mathematics + university: Bristol University + time: 2007 - 2011 diff --git a/_includes/education.html b/_includes/education.html index 72b1a10..0462032 100644 --- a/_includes/education.html +++ b/_includes/education.html @@ -1,13 +1,15 @@ -
-

Education

-
-

MSc in Computer Science

-
University of London
-
2011 - 2012
-
-
-

BSc in Applied Mathematics

-
Bristol University
-
2007 - 2011
-
-
\ No newline at end of file +{% if site.data.educations %} +
+ +

Education

+ + {% for education in site.data.educations %} +
+

{{ education.degree }}

+
{{ education.university }}
+
{{ education.time }}
+
+ {% endfor %} + +
+{% endif %}