Update file functions.php

This commit is contained in:
Jan BELLON 2024-03-06 17:54:22 +00:00
parent fc72ce64e3
commit dc782e3167

View File

@ -1,7 +1,7 @@
<?php <?php
function nav($nav) { function nav($nav) {
foreach($nav as $name => $url) { foreach($nav as $name => $url) {
echo "<div class='navitem'><a href="$url">$name</a></div>"; echo "<div class='navitem'><a href='$url'>$name</a></div>";
} }
} }
?> ?>