We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{% with_scope published: true %} works fine - indicating that with_scope does work on page collections.
{% with_scope published: true %}
with_scope
However, the page parent drop doesn't appear to be accessible. Is it supposed to be?
parent
The following code will print out a link to every page on a site, instead of only pages that are children of the specified parent page:
{% with_scope parent: some_page_slug %} {% for page in site.pages %} <a href="{% path_to page %}">{{ page.title }}</a> {% endfor %} {% endwith_scope %}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
{% with_scope published: true %}
works fine - indicating thatwith_scope
does work on page collections.However, the page
parent
drop doesn't appear to be accessible. Is it supposed to be?The following code will print out a link to every page on a site, instead of only pages that are children of the specified parent page:
The text was updated successfully, but these errors were encountered: