From 728514d65697d1cb922d72194d58f413b8064a0b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 28 Oct 2022 08:52:54 +0200 Subject: bump jekyll-theme --- notes/index.html | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'notes/index.html') diff --git a/notes/index.html b/notes/index.html index a5452c0..91622b6 100644 --- a/notes/index.html +++ b/notes/index.html @@ -8,7 +8,7 @@ sidebar: notes: hide: true --- -

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

+

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

{% if site.notes.size > 0 %} {% comment %} Sorting can be done in _config.yml with Jekyll 4.0 or later. @@ -16,14 +16,9 @@ sidebar: {% assign note_list = site.notes | sort_natural: 'title' %} {% for note in note_list %} -
-
{{ note.title }}
- -
+ {% capture title %}
{{ note.title }}
{% endcapture %} + {% capture label %}

 {{ note.subtitle }}

{% endcapture %} + {% include jekyll-theme/flex-header.html title=title right=label %}
{% endfor %} {% else %} -- cgit v1.2.3