Show
Ignore:
Timestamp:
02/08/2008 07:20:03 PM (11 months ago)
Author:
Shadowhand
Message:

Updated default welcome controller and views. Much more attractive now.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/application/views/welcome.php

    r1522 r2004  
    1 <h2>Welcome!</h2> 
    2 <p><?php echo $message ?></p> 
    3 <hr/> 
     1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
     2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
     3<head> 
     4<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
     5 
     6<title><?php echo $title ?></title> 
     7 
     8<style type="text/css"> 
     9html { background: #83c018; } 
     10body { width: 700px; margin: 2em auto; background: transparent url('<?php echo url::base(FALSE).'kohana.png' ?>') center 0 no-repeat; font-size: 76%; font-family: Arial, Verdana, sans-serif; color: #111; line-height: 1.5; text-align: center; } 
     11div, h2, a, p, code, ul { font-family: inherit; color: inherit; padding: 0; margin: 0; text-align: baseline; text-decoration: none; } 
     12h2 { padding: 200px 0 0; } 
     13a { text-decoration: underline; } 
     14ul { list-style: none; padding: 1em 0; } 
     15ul li { display: inline; padding-right: 1em; } 
     16ul li:before { content: '» '; } 
     17code { color: #381a0c; } 
     18p.intro { padding: 1em 0; font-size: 1.2em; } 
     19p.copyright { font-size: 0.8em; text-transform: uppercase; color: #44640b; } 
     20</style> 
     21 
     22</head> 
     23<body> 
     24 
     25<h2><?php echo $title ?></h2> 
     26<?php echo $content ?> 
     27 
     28<ul> 
     29<?php foreach ($links as $title => $url): ?> 
     30<li><?php echo html::anchor($url, $title) ?></li> 
     31<?php endforeach ?> 
     32</ul> 
     33 
     34<p class="copyright">Copyright &copy;2007-2008 Kohana Team</p> 
     35 
     36</body> 
     37</html>