blob: da03827cc9c083dde66d6b5d18732791650f609a (
plain) (
tree)
|
|
---
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' %}
<p>Style guides and best practices, not worthy of a post.</p>
<div class="list-group wide-enough">
{% for note in note_list %}
<a href="{{ note.url | relative_url }}" class="list-group-item">
<h4 class="list-group-item-heading">{{ note.title }} <small>{{ note.subtitle }}</small></h4>
</a>
{% endfor %}
</div>
{% else %}
<p>Sorry, no notes have been added yet.</p>
{% endif %}
|