diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-24 08:51:26 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-24 08:51:26 +0300 |
commit | b7cb95f1d2ed85b970a877cfd930856e2716fd30 (patch) | |
tree | df4b561dbeeec7933b3d4cfbbb19e90342502826 /notes/index.html | |
parent | bump jekyll-theme (diff) | |
download | blog-b7cb95f1d2ed85b970a877cfd930856e2716fd30.tar.gz blog-b7cb95f1d2ed85b970a877cfd930856e2716fd30.zip |
notes: use sort_natural instead of sort
Diffstat (limited to 'notes/index.html')
-rw-r--r-- | notes/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notes/index.html b/notes/index.html index 42ff009..db65de9 100644 --- a/notes/index.html +++ b/notes/index.html @@ -10,7 +10,7 @@ navbar: {% comment %} Sorting can be done in _config.yml with Jekyll 4.0 or later. {% endcomment %} - {% assign note_list = site.notes | sort: 'title' %} + {% assign note_list = site.notes | sort_natural: 'title' %} {% for note in note_list %} <li><a href="{{ note.url | relative_url }}">{{ note.title }}</a></li> {% endfor %} |