From 31ed013133ee5c48abec0e58f2f9dbefbf32f865 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 5 Apr 2022 17:18:38 +0200 Subject: sidebar: redesign "Notes" section --- _config.yml | 2 +- _includes/custom-sidebar.html | 2 +- _includes/notes.html | 22 +++++++++++++--------- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/_config.yml b/_config.yml index ab2b58e..c3edccf 100644 --- a/_config.yml +++ b/_config.yml @@ -53,7 +53,7 @@ repository: egor-tensin/blog # jekyll-paginate paginate: 10 # jekyll-remote-theme -remote_theme: egor-tensin/jekyll-theme@0bf6261d15918eed39b077b0ec83f3325c530bff +remote_theme: egor-tensin/jekyll-theme@526819702fe16d4d6e6fa62c9557217cae491d4f # Theme settings settings: diff --git a/_includes/custom-sidebar.html b/_includes/custom-sidebar.html index 3bd83aa..f03f2cb 100644 --- a/_includes/custom-sidebar.html +++ b/_includes/custom-sidebar.html @@ -3,6 +3,6 @@ {% capture notes %} {% include notes.html sidebar=true %} {% endcapture %} -{% include jekyll-theme/sidebar/entry.html header='Notes' content=notes %} +{% include jekyll-theme/sidebar/entry.html content=notes %} {% endif %} diff --git a/_includes/notes.html b/_includes/notes.html index ad7e58d..1657f7a 100644 --- a/_includes/notes.html +++ b/_includes/notes.html @@ -3,17 +3,21 @@ {% endcomment %} {% assign note_list = site.notes | sort_natural: 'title' %}
+ {% assign h = 'h4' %} + {% if include.sidebar %} + {% assign h = 'h5' %} + {% endif %} + {% if include.sidebar %} +
+

notes

+
+ {% endif %} {% for note in note_list %} - {% if include.sidebar %} - {{ note.subtitle }} -  {{ note.title }} - {% else %} -

- {{ note.title }} - {{ note.subtitle }} -

- {% endif %} + <{{ h }} class="list-group-item-heading" style="display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; column-grap: .5em;"> + {{ note.title }} + {{ note.subtitle }} +
{% endfor %}
-- cgit v1.2.3