Skip to content

Commit 71c4368

Browse files
committed
fix typo for sorting
1 parent 1664f19 commit 71c4368

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_includes/cv/education.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign education = entry[1] | sort: 'entry.start_date' | reverse %}
2+
{% assign education = entry[1] | sort: 'start_date' | reverse %}
33
{% for content in education %}
44
<li class="list-group-item">
55
<div class="row">

_includes/cv/publications.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign publications = entry[1] | sort: 'entry.date' | reverse %}
2+
{% assign publications = entry[1] | sort: 'date' | reverse %}
33
{% for content in publications %}
44
<li class="list-group-item">
55
<div class="row">

_includes/cv/work.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign work = entry[1] | sort: 'entry.start_date' | reverse %}
2+
{% assign work = entry[1] | sort: 'start_date' | reverse %}
33
{% for content in work %}
44
<li class="list-group-item">
55
<div class="row">

0 commit comments

Comments
 (0)