Changeset 3292 for trunk/application

Show
Ignore:
Timestamp:
08/07/2008 12:34:02 PM (4 months ago)
Author:
Geert
Message:

Freshening up the welcome page design

Files:
1 modified

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> 
    23 
    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> 
    69 
    710<ul> 
    811<?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> 
    1013<?php endforeach ?> 
    1114</ul>