Skip to content

Instantly share code, notes, and snippets.

@sskylar
Created October 13, 2014 16:35
Show Gist options
  • Save sskylar/58f533cf78dcbd9d9bba to your computer and use it in GitHub Desktop.
Save sskylar/58f533cf78dcbd9d9bba to your computer and use it in GitHub Desktop.
Find post in Siteleaf based on meta value
{% for post in posts %}
{% if post.meta['KEY'].value == 'VALUE' %}
<p>Post found: {{post.title}}</p>
{% break %}
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment