I’m not a programmer… or really a developer. I guess I’m a part time hacker. I have managed to work through the documents and managed to display my collections folder on a page, and have links working. However the order of the links is not working quite how I would like. The rendered page looks like this:
Genesis
01 10 11 12 13 14 15 16 17 18 19 02 20 03 04 05 06 07 08 09
I would like it to look like this:
Genesis
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20
I’m sure it is something simple… but I can’t seem to figure it out. Any help would greatly be appreciated. I’m completely new to Jekyll.
My page calling it looks like this:
{% for book in site.genesis %}
<a href="{{ book.url }}">{{ book.chapter }}</a>
{% endfor %}
Shane