This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//set up the object with the api details | |
function GitHubCommit(api, owner, repo, ref) | |
{ | |
this.api = api; | |
this.repo = { | |
owner: owner, | |
repo: repo, | |
ref: ref | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
{% for weight in (0..100) %} | |
{% for node in site.pages %} | |
{% if node.weight == weight or node.weight == null and weight == 0 %} | |
<li> | |
<a href="{{node.url}}" title="{{node.title}}">{{node.title}}</a> | |
</li> | |
{% endif %} | |
{% endfor %} | |
{% endfor %} |
NewerOlder