Skip to content
Grav 2.0 is officially stable. Read the announcement →
Support

Showing pages that are published

Started by Claud Rusnac 9 years ago · 1 replies · 565 views
9 years ago

I have a template that is displaying a list of children, but the output also shows pages that are have "published: false".

TWIG
<ul class="list-group">
    {% for p in page.children if p != page %}
         <li class="list-group-item"> <a href="{{p.url}}"><i class="fa fa-angle-right" aria-hidden="true"></i> {{ p.title }}</a></li>
    {% endfor %}
</ul>

How do I exclude unpublished pages?

9 years ago

Hi
The page collection includes a "published" boolean so something like this should do what you need:

TWIG
{% if p.published %} 
{% endif %}
👍 1

Suggested topics

Topic Participants Replies Views Activity
Support · by Anna, 17 hours ago
1 49 10 hours ago
Support · by gtx, 1 week ago
4 227 2 days ago
Support · by Paul Hodges, 2 weeks ago
13 277 5 days ago
Support · by Anna, 3 weeks ago
9 335 1 week ago
Support · by TomW, 2 weeks ago
4 188 2 weeks ago