Hi there, I have page where I'm displaying list of github libs like this:
-```
{% for p in page.find('/libraries').header.libraries %}
<div class="category_item">
<h2><a href="{{ p.link }}">{{ p.title }}</a></h2>
{{ p.description|markdown }}
</div>
{% endfor %}
libraries are stored in .md file like this:
libraries:
- title: "Spring"
category: animation
description: "A library to simplify iOS animations."
link: https://github.com/MengTo/SpringTXT
I've found that I can easily show stars of particular library like this:
{{ github.client.api('repo').show('getgrav', 'grav')['stargazers_count'] }}
How can I order my list of libraries based on stars of each library?