I am starting with Liquid & Jekyll can anyone help me with making list order ascending (by {{category}} name)?
<div class="col-xs-6 col-sm-3 patickaborder">
<h5>Rubriky</h5>
<ul>
{% for category in site.categories order:ascending %}
<li><a href="{{ site.url }}{{ category | first }}/index.html">{{ category | first }}</a></li>
{% endfor %}
</ul>
</div>