blob: b3e872f5e408db5afa4084ac1bb144d7bd724249 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<h1>Welcome</h1>
<div class='dashboard'>
<h2>What do you want to do?</h2>
<?php if(count($this->links)>0 && is_array($this->links)): ?>
<ul>
<?php foreach($this->links as $link => $text):?>
<li><a href='<?php echo $link;?>'><?php echo $text;?></a></li>
<?php endforeach ?>
</ul>
<?php endif ?>
</div>
|