Created
April 7, 2013 01:18
-
-
Save lilmuckers/5328432 to your computer and use it in GitHub Desktop.
Liquid page weighting
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 %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment