blob: aa983930d0c11b9b98d372ec9c8057eaf593ac9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<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):?>
<a href='<?php echo $link;?>'><li><?php echo $text;?></li></a>
<?php endforeach ?>
</ul>
<div class='bottomimg'>
<img src='/stats/graphgroup/' />
</div>
</div>
<?php endif ?>
|