--- title: Notes navbar: link: Notes priority: 2 layout: default sidebar: notes: hide: 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. {% endcomment %} {% assign note_list = site.notes | sort_natural: 'title' %} {% for note in note_list %} {% capture title %}
{{ note.title }}
{% endcapture %} {% capture label %}

 {{ note.subtitle }}

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

Sorry, no notes have been added yet.

{% endif %}