<nav>
<h1>Homepage</h1>
<ul>
<?php
$dir = "./Pages";
$files = scandir($dir, SCANDIR_SORT_DESCENDING);
foreach ($files as $file) {
$file = str_replace(".php", "", $file);
if ($file != "." && $file != "" && $file != "..") {
?>
<li><a href=<?php
echo "index.php?page=$file"
?>><?php
echo $file;
?>
</a></li>
<?php
}
}
?>
</ul>
</nav>