Last active
December 26, 2015 03:48
-
-
Save destroytoday/7088054 to your computer and use it in GitHub Desktop.
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
{% assign count = '0' %} | |
{% for post in posts %} | |
{% if post.taxonomy.tag != 'Editorially' && !post.meta.feature %} | |
{{ post.title }} | |
{% unless count < 3 %}{% break %}{% endunless %} | |
{% endif %} | |
{% capture count %}{{ count | plus: 1 }}{% endcapture %} | |
{% endfor %} | |
{% assign starting_count = count %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment