Navigation shows unpublished page

Hello,

I do not understand why the home is shown to you in my navigation although it does not have the status published.

├── 1_angebot
│ └── 1_test
├── 2_about
├── 3_kontakt
└── home

  <?php $items = $site->children()->published();?>
            <ul>
                <?php foreach($items as $item): ?>
                <li>
                    <a <?php e($item->isOpen(), ' class="active"') ?> href="<?php 
                        echo $item->url();?>">
                    <?php echo $item->title()->html() ?>
                    </a>
                </li>
                <?php endforeach ?>
            </ul>

thank you for reading.

greetings perry

Kirby 3 has three statuses:

  • draft
  • unlisted
  • listed

published refers to both listed and unlisted pages. To limit your selection to pages with a prefix, use listed instead of published.

Thank you @pixelijn