| 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"> |
| | 9 | html { background: #83c018; } |
| | 10 | body { 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; } |
| | 11 | div, h2, a, p, code, ul { font-family: inherit; color: inherit; padding: 0; margin: 0; text-align: baseline; text-decoration: none; } |
| | 12 | h2 { padding: 200px 0 0; } |
| | 13 | a { text-decoration: underline; } |
| | 14 | ul { list-style: none; padding: 1em 0; } |
| | 15 | ul li { display: inline; padding-right: 1em; } |
| | 16 | ul li:before { content: '» '; } |
| | 17 | code { color: #381a0c; } |
| | 18 | p.intro { padding: 1em 0; font-size: 1.2em; } |
| | 19 | p.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 ©2007-2008 Kohana Team</p> |
| | 35 | |
| | 36 | </body> |
| | 37 | </html> |