$page->depth()
Returns a number indicating how deep the page is nested within the content folder
$page->depth(): intReturn type
int
Parent class
Example
<select onchange="window.location.href = this.value">
<?php foreach($site->index() as $p): ?>
<option value="<?= $p->url() ?>">
  <?= str_repeat('-', $p->depth()) ?>
  <?= html($p->title()) ?>
</option>
<?php endforeach ?>
</select>