7faf852561
Conflicts: admin/templates/index.php templates/layout.admin.php templates/layout.user.php All conflicts are fixed.
12 lines
222 B
PHP
12 lines
222 B
PHP
<?php
|
|
/*
|
|
* Template for admin pages
|
|
*/
|
|
?>
|
|
<h1>Administration</h1>
|
|
|
|
<ul>
|
|
<?php foreach($_["adminpages"] as $i): ?>
|
|
<li><a href="<?php echo $i["href"]; ?>"><?php echo $i["name"]; ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|