diff --git a/_includes/resume/education.html b/_includes/resume/education.html index 4dcfab5..13427ae 100644 --- a/_includes/resume/education.html +++ b/_includes/resume/education.html @@ -4,19 +4,23 @@
  • - {% if content.startDate %} + {% if content.startDate and content.startDate!="" %} {% assign startDate = content.startDate | split: "-" | slice: 0,2 | join: "." %} {% assign endDate = content.endDate | split: "-" | slice: 0,2 | join: "." | default: "Present" %} {% assign date = startDate | append: " - "%} {% assign date = date | append: endDate %} {% else %} - {% assign date = "" %} + {% assign date = null %} {% endif %} {% if content.location %} @@ -44,4 +48,4 @@ {% endfor %} - \ No newline at end of file +
    - {{date}} + {% if date %} + + {{date}} + + {% endif %}