0adcab68435a575df41e8a2e7a1d40af8ee4dcf2
[speedfreak] / Server / application / views / welcome_content.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
2 <div class="box">
3         <p>This is the default Kohana index page. You may also access this page as <code><?php echo html::anchor('welcome/index', 'welcome/index') ?></code>.</p>
4
5         <p>
6                 To change what gets displayed for this page, edit <code>application/controllers/welcome.php</code>.<br />
7                 To change this text, edit <code>application/views/welcome_content.php</code>.
8         </p>
9 </div>
10
11 <ul>
12 <?php foreach ($links as $title => $url): ?>
13         <li><?php echo ($title === 'License') ? html::file_anchor($url, html::specialchars($title)) : html::anchor($url, html::specialchars($title)) ?></li>
14 <?php endforeach ?>
15 </ul>