---
title: Notes
navbar:
link: Notes
priority: 3
---
{% if site.notes.size != 0 %}
Style guides and best practices, not worthy of a post.
{% comment %}
Sorting can be done in _config.yml with Jekyll 4.0 or later.
{% endcomment %}
{% assign note_list = site.notes | sort: 'title' %}
{% for note in note_list %}
- {{ note.title }}
{% endfor %}
{% else %}
Sorry, no notes have been added yet.
{% endif %}