From cabfb8ec4e4f75575b048e3dcd3ab4622b593c9d Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 25 Oct 2022 12:05:29 +0200 Subject: redesign feed & categories --- notes/index.html | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'notes') diff --git a/notes/index.html b/notes/index.html index 8e03612..a5452c0 100644 --- a/notes/index.html +++ b/notes/index.html @@ -3,13 +3,29 @@ title: Notes navbar: link: Notes priority: 3 +layout: default sidebar: notes: hide: true --- +

{% include jekyll-theme/categories/label.html category='Notes' feed=true %}

{% if site.notes.size > 0 %} -

Style guides and best practices, not worthy of a post.

- {% include notes.html %} + {% comment %} + Sorting can be done in _config.yml with Jekyll 4.0 or later. + {% endcomment %} + {% assign note_list = site.notes | sort_natural: 'title' %} + {% for note in note_list %} + +
+
{{ note.title }}
+ +
+
+ {% endfor %} {% else %}

Sorry, no notes have been added yet.

{% endif %} -- cgit v1.2.3