diff --git a/_includes/resume/awards.liquid b/_includes/resume/awards.liquid index 13bd9b3..85dec3f 100644 --- a/_includes/resume/awards.liquid +++ b/_includes/resume/awards.liquid @@ -2,7 +2,7 @@ {% for content in data[1] %}
  • -
    +
    {% if content.date %} {% assign date = content.date | split: '-' | join: '.' %} {% else %} {% assign date = '' %} {% endif %} {{ date }}
    diff --git a/_includes/resume/education.liquid b/_includes/resume/education.liquid index a570605..cebb058 100644 --- a/_includes/resume/education.liquid +++ b/_includes/resume/education.liquid @@ -3,7 +3,7 @@ {% for content in education %}
  • -
    +
    {% 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' %} diff --git a/_includes/resume/projects.liquid b/_includes/resume/projects.liquid index 5f47ea8..1620e15 100644 --- a/_includes/resume/projects.liquid +++ b/_includes/resume/projects.liquid @@ -2,7 +2,7 @@ {% for content in data[1] %}
  • -
    +
    {% if content.startDate %} {% assign startDate = content.startDate | split: '-' | slice: 0, 2 | join: '.' %} {% assign endDate = content.endDate | split: '-' | slice: 0, 2 | join: '.' | default: 'Present' %} diff --git a/_includes/resume/publications.liquid b/_includes/resume/publications.liquid index ef23413..04f2077 100644 --- a/_includes/resume/publications.liquid +++ b/_includes/resume/publications.liquid @@ -3,7 +3,7 @@ {% for content in publications %}
  • -
    +
    {% if content.releaseDate %} {% assign date = content.releaseDate | split: '-' | join: '.' %} {% else %} {% assign date = '' %} {% endif %} diff --git a/_includes/resume/volunteer.liquid b/_includes/resume/volunteer.liquid index 7a7b2d6..32e589b 100644 --- a/_includes/resume/volunteer.liquid +++ b/_includes/resume/volunteer.liquid @@ -3,7 +3,7 @@ {% for content in volunteer %}
  • -
    +
    {% if content.startDate %} {% assign startDate = content.startDate | split: '-' | slice: 0, 2 | join: '.' %} {% assign endDate = content.endDate | split: '-' | slice: 0, 2 | join: '.' | default: 'Present' %} diff --git a/_includes/resume/work.liquid b/_includes/resume/work.liquid index 79d8da9..f92a599 100644 --- a/_includes/resume/work.liquid +++ b/_includes/resume/work.liquid @@ -3,7 +3,7 @@ {% for content in work %}
  • -
    +
    {% if content.startDate %} {% assign startDate = content.startDate | split: '-' | slice: 0, 2 | join: '.' %} {% assign endDate = content.endDate | split: '-' | slice: 0, 2 | join: '.' | default: 'Present' %} diff --git a/_sass/_base.scss b/_sass/_base.scss index 64198e2..63d2dc9 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -484,6 +484,11 @@ footer.sticky-bottom { color: var(--global-text-color); } +.date-column { + width: 75px; + transform: translateX(-15px) translateY(-5px); +} + // Repositories @media (min-width: 768px) {