--- title: Notes navbar: link: Notes priority: 3 --- {% 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' %}

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

{% for note in note_list %}

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

{% endfor %}
{% else %}

Sorry, no notes have been added yet.

{% endif %}