Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Showing pages that are published

Started by Claud Rusnac 9 years ago · 1 replies · 655 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 Marcel, 5 days ago
0 83 5 days ago
Support · by JakobDB, 6 days ago
1 89 5 days ago
Support · by ramenos, 7 days ago
3 103 6 days ago
Support · by gravinator, 2 weeks ago
3 228 7 days ago
Support · by Roger Parkinson, 2 weeks ago
3 308 2 weeks ago