Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 1 | <?php |
| 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
| 5 | * An open source application development framework for PHP 5.1.6 or newer |
| 6 | * |
| 7 | * NOTICE OF LICENSE |
| 8 | * |
| 9 | * Licensed under the Academic Free License version 3.0 |
| 10 | * |
Derek Jones | 61df906 | 2011-10-21 09:55:40 -0500 | [diff] [blame] | 11 | * This source file is subject to the Academic Free License (AFL 3.0) that is |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 12 | * bundled with this package in the files license_afl.txt / license_afl.rst. |
| 13 | * It is also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/AFL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
| 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
| 21 | * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. (http://ellislab.com/) |
| 22 | * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0) |
| 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | ?> |
| 28 | |
Greg Aker | 3a56398 | 2010-11-18 18:43:03 -0600 | [diff] [blame] | 29 | <!DOCTYPE html> |
| 30 | <html lang="en"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 31 | <head> |
Greg Aker | 3a56398 | 2010-11-18 18:43:03 -0600 | [diff] [blame] | 32 | <meta charset="utf-8"> |
| 33 | <title>Welcome to CodeIgniter</title> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 34 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 35 | <style type="text/css"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 36 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 37 | ::selection{ background-color: #E13300; color: white; } |
| 38 | ::moz-selection{ background-color: #E13300; color: white; } |
| 39 | ::webkit-selection{ background-color: #E13300; color: white; } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 40 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 41 | body { |
| 42 | background-color: #fff; |
| 43 | margin: 40px; |
| 44 | font: 13px/20px normal Helvetica, Arial, sans-serif; |
| 45 | color: #4F5155; |
| 46 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 47 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 48 | a { |
| 49 | color: #003399; |
| 50 | background-color: transparent; |
| 51 | font-weight: normal; |
| 52 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 53 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 54 | h1 { |
| 55 | color: #444; |
| 56 | background-color: transparent; |
| 57 | border-bottom: 1px solid #D0D0D0; |
| 58 | font-size: 19px; |
| 59 | font-weight: normal; |
| 60 | margin: 0 0 14px 0; |
| 61 | padding: 14px 15px 10px 15px; |
| 62 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 63 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 64 | code { |
| 65 | font-family: Consolas, Monaco, Courier New, Courier, monospace; |
| 66 | font-size: 12px; |
| 67 | background-color: #f9f9f9; |
| 68 | border: 1px solid #D0D0D0; |
| 69 | color: #002166; |
| 70 | display: block; |
| 71 | margin: 14px 0 14px 0; |
| 72 | padding: 12px 10px 12px 10px; |
| 73 | } |
| 74 | |
| 75 | #body{ |
| 76 | margin: 0 15px 0 15px; |
| 77 | } |
| 78 | |
| 79 | p.footer{ |
| 80 | text-align: right; |
| 81 | font-size: 11px; |
| 82 | border-top: 1px solid #D0D0D0; |
| 83 | line-height: 32px; |
| 84 | padding: 0 10px 0 10px; |
| 85 | margin: 20px 0 0 0; |
| 86 | } |
| 87 | |
| 88 | #container{ |
| 89 | margin: 10px; |
| 90 | border: 1px solid #D0D0D0; |
| 91 | -webkit-box-shadow: 0 0 8px #D0D0D0; |
| 92 | } |
| 93 | </style> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 94 | </head> |
| 95 | <body> |
| 96 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 97 | <div id="container"> |
| 98 | <h1>Welcome to CodeIgniter!</h1> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 99 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 100 | <div id="body"> |
| 101 | <p>The page you are looking at is being generated dynamically by CodeIgniter.</p> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 102 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 103 | <p>If you would like to edit this page you'll find it located at:</p> |
| 104 | <code>application/views/welcome_message.php</code> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 105 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 106 | <p>The corresponding controller for this page is found at:</p> |
| 107 | <code>application/controllers/welcome.php</code> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 108 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 109 | <p>If you are exploring CodeIgniter for the very first time, you should start by reading the <a href="user_guide/">User Guide</a>.</p> |
| 110 | </div> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 111 | |
Troy McCormick | ce592c4 | 2011-09-07 11:23:58 -0700 | [diff] [blame] | 112 | <p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT == 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p> |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 113 | </div> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 114 | |
| 115 | </body> |
Derek Allard | 687cdca | 2008-05-13 11:46:39 +0000 | [diff] [blame] | 116 | </html> |