From e10739af87c6cc168c760b3f2e5b066b70f041f9 Mon Sep 17 00:00:00 2001 From: Caio Petrucci Rosa Date: Sun, 4 Jan 2026 18:06:56 -0300 Subject: [PATCH] Fix typo in Bootstrap small column class usage (#3421) This PR fixes a recurring typo in multiple Liquid templates where the Bootstrap class `cl-sm` is used instead of `col-sm`. Because of this typo, the `col-sm` styling was not being applied. All instances have been corrected. --- _includes/cv/time_table.liquid | 4 ++-- _includes/resume/awards.liquid | 4 ++-- _includes/resume/education.liquid | 4 ++-- _includes/resume/projects.liquid | 4 ++-- _includes/resume/publications.liquid | 4 ++-- _includes/resume/volunteer.liquid | 4 ++-- _includes/resume/work.liquid | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/_includes/cv/time_table.liquid b/_includes/cv/time_table.liquid index beb1c52..11962df 100644 --- a/_includes/cv/time_table.liquid +++ b/_includes/cv/time_table.liquid @@ -3,7 +3,7 @@
  • {% if content.year %} -
    +
    @@ -27,7 +27,7 @@
    {% endif %} -
    +
    {% if content.title %}
    {{ content.title }}
    {% endif %} diff --git a/_includes/resume/awards.liquid b/_includes/resume/awards.liquid index 85dec3f..0540024 100644 --- a/_includes/resume/awards.liquid +++ b/_includes/resume/awards.liquid @@ -2,11 +2,11 @@ {% for content in data[1] %}
  • -
    +
    {% if content.date %} {% assign date = content.date | split: '-' | join: '.' %} {% else %} {% assign date = '' %} {% endif %} {{ date }}
    -
    +
    {{ content.title }}
    diff --git a/_includes/resume/education.liquid b/_includes/resume/education.liquid index cebb058..8d0a74d 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' %} @@ -34,7 +34,7 @@
    -
    +
    {{ content.studyType }}
    diff --git a/_includes/resume/projects.liquid b/_includes/resume/projects.liquid index 1620e15..e7d94f2 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' %} @@ -13,7 +13,7 @@ {% endif %} {{ date }}
    -
    +
    {{ content.name }}
    diff --git a/_includes/resume/publications.liquid b/_includes/resume/publications.liquid index 04f2077..206c45d 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 %} @@ -15,7 +15,7 @@
    -
    +
    {{ content.name }}
    diff --git a/_includes/resume/volunteer.liquid b/_includes/resume/volunteer.liquid index 32e589b..2acd1ad 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' %} @@ -32,7 +32,7 @@
    -
    +
    {{ content.position }}
    diff --git a/_includes/resume/work.liquid b/_includes/resume/work.liquid index f92a599..82f677a 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' %} @@ -32,7 +32,7 @@
    -