diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-05 17:18:38 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-05 17:18:38 +0200 |
commit | 31ed013133ee5c48abec0e58f2f9dbefbf32f865 (patch) | |
tree | 3f8ae4c6c44ece6dade575ecb63d142bb2c6889c /_includes/notes.html | |
parent | bump jekyll-theme (diff) | |
download | blog-31ed013133ee5c48abec0e58f2f9dbefbf32f865.tar.gz blog-31ed013133ee5c48abec0e58f2f9dbefbf32f865.zip |
sidebar: redesign "Notes" section
Diffstat (limited to '_includes/notes.html')
-rw-r--r-- | _includes/notes.html | 22 |
1 files changed, 13 insertions, 9 deletions
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' %} <div class="list-group wide-enough"> + {% assign h = 'h4' %} + {% if include.sidebar %} + {% assign h = 'h5' %} + {% endif %} + {% if include.sidebar %} + <div class="list-group-item disabled"> + <h4 class="list-group-item-heading">notes</h4> + </div> + {% endif %} {% for note in note_list %} <a href="{{ note.url | relative_url }}" class="list-group-item"> - {% if include.sidebar %} - <span class="badge">{{ note.subtitle }}</span> - <span class="glyphicon glyphicon-file"></span> {{ note.title }} - {% else %} - <h4 class="list-group-item-heading" style="display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; column-grap: .5em;"> - <span>{{ note.title }}</span> - <small>{{ note.subtitle }}</small> - </h4> - {% endif %} + <{{ h }} class="list-group-item-heading" style="display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; column-grap: .5em;"> + <span>{{ note.title }}</span> + <small>{{ note.subtitle }}</small> + </{{ h }}> </a> {% endfor %} </div> |