This commit is contained in:
2024-01-11 10:14:21 +01:00
parent 59e0957712
commit d96bbd2e2a
3 changed files with 18 additions and 4 deletions

14
templates/navpages.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
ob_start();
$navpage_template = '<li><a href="__LOCATION__" __CLASS__>__NAME__</a></li>';
$page_dir = "/pages";
$files1 = scandir($page_dir);
echo $files1;
return ob_get_clean();
?>