Skip to content

Instantly share code, notes, and snippets.

@lilmuckers
Created April 7, 2013 01:18
Show Gist options
  • Save lilmuckers/5328432 to your computer and use it in GitHub Desktop.
Save lilmuckers/5328432 to your computer and use it in GitHub Desktop.
Liquid page weighting
<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