Changeset 3292 for trunk/application
- Timestamp:
- 08/07/2008 12:34:02 PM (4 months ago)
- Files:
-
- 1 modified
-
trunk/application/views/welcome_content.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/views/welcome_content.php
r3289 r3292 1 <p class="intro">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> 1 <div class="box"> 2 <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> 2 3 3 <p>To change what gets displayed for this page, edit <code>application/controllers/welcome.php</code>.</p> 4 5 <p>To change this text, edit <code>application/views/welcome_content.php</code>. 4 <p> 5 To change what gets displayed for this page, edit <code>application/controllers/welcome.php</code>.<br /> 6 To change this text, edit <code>application/views/welcome_content.php</code>. 7 </p> 8 </div> 6 9 7 10 <ul> 8 11 <?php foreach ($links as $title => $url): ?> 9 <li><?php echo ($title === 'License') ? html::file_anchor($url, $title) : html::anchor($url, $title) ?></li>12 <li><?php echo ($title === 'License') ? html::file_anchor($url, html::specialchars($title)) : html::anchor($url, html::specialchars($title)) ?></li> 10 13 <?php endforeach ?> 11 14 </ul>
