Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 7 | * This content is released under the MIT License (MIT) |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 8 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 9 | * Copyright (c) 2014, British Columbia Institute of Technology |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 10 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 12 | * of this software and associated documentation files (the "Software"), to deal |
| 13 | * in the Software without restriction, including without limitation the rights |
| 14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 15 | * copies of the Software, and to permit persons to whom the Software is |
| 16 | * furnished to do so, subject to the following conditions: |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 17 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 18 | * The above copyright notice and this permission notice shall be included in |
| 19 | * all copies or substantial portions of the Software. |
| 20 | * |
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 27 | * THE SOFTWARE. |
| 28 | * |
| 29 | * @package CodeIgniter |
| 30 | * @author EllisLab Dev Team |
darwinel | 871754a | 2014-02-11 17:34:57 +0100 | [diff] [blame] | 31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 32 | * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/) |
| 33 | * @license http://opensource.org/licenses/MIT MIT License |
| 34 | * @link http://codeigniter.com |
| 35 | * @since Version 1.0.0 |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 36 | * @filesource |
| 37 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 39 | ?><!DOCTYPE html> |
Greg Aker | 3a56398 | 2010-11-18 18:43:03 -0600 | [diff] [blame] | 40 | <html lang="en"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 41 | <head> |
Greg Aker | 3a56398 | 2010-11-18 18:43:03 -0600 | [diff] [blame] | 42 | <meta charset="utf-8"> |
| 43 | <title>Welcome to CodeIgniter</title> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 44 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 45 | <style type="text/css"> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 46 | |
Andrey Andreev | 0af0258 | 2012-10-05 13:34:32 +0300 | [diff] [blame] | 47 | ::selection { background-color: #E13300; color: white; } |
| 48 | ::-moz-selection { background-color: #E13300; color: white; } |
| 49 | ::-webkit-selection { background-color: #E13300; color: white; } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 50 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 51 | body { |
| 52 | background-color: #fff; |
| 53 | margin: 40px; |
| 54 | font: 13px/20px normal Helvetica, Arial, sans-serif; |
| 55 | color: #4F5155; |
| 56 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 57 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 58 | a { |
| 59 | color: #003399; |
| 60 | background-color: transparent; |
| 61 | font-weight: normal; |
| 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 | h1 { |
| 65 | color: #444; |
| 66 | background-color: transparent; |
| 67 | border-bottom: 1px solid #D0D0D0; |
| 68 | font-size: 19px; |
| 69 | font-weight: normal; |
| 70 | margin: 0 0 14px 0; |
| 71 | padding: 14px 15px 10px 15px; |
| 72 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 73 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 74 | code { |
| 75 | font-family: Consolas, Monaco, Courier New, Courier, monospace; |
| 76 | font-size: 12px; |
| 77 | background-color: #f9f9f9; |
| 78 | border: 1px solid #D0D0D0; |
| 79 | color: #002166; |
| 80 | display: block; |
| 81 | margin: 14px 0 14px 0; |
| 82 | padding: 12px 10px 12px 10px; |
| 83 | } |
| 84 | |
Andrey Andreev | 0af0258 | 2012-10-05 13:34:32 +0300 | [diff] [blame] | 85 | #body { |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 86 | margin: 0 15px 0 15px; |
| 87 | } |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 88 | |
Andrey Andreev | 0af0258 | 2012-10-05 13:34:32 +0300 | [diff] [blame] | 89 | p.footer { |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 90 | text-align: right; |
| 91 | font-size: 11px; |
| 92 | border-top: 1px solid #D0D0D0; |
| 93 | line-height: 32px; |
| 94 | padding: 0 10px 0 10px; |
| 95 | margin: 20px 0 0 0; |
| 96 | } |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 97 | |
Andrey Andreev | 0af0258 | 2012-10-05 13:34:32 +0300 | [diff] [blame] | 98 | #container { |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 99 | margin: 10px; |
| 100 | border: 1px solid #D0D0D0; |
Andrey Andreev | 797fd35 | 2014-01-03 11:32:46 +0200 | [diff] [blame] | 101 | box-shadow: 0 0 8px #D0D0D0; |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 102 | } |
| 103 | </style> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 104 | </head> |
| 105 | <body> |
| 106 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 107 | <div id="container"> |
| 108 | <h1>Welcome to CodeIgniter!</h1> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 109 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 110 | <div id="body"> |
| 111 | <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] | 112 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 113 | <p>If you would like to edit this page you'll find it located at:</p> |
| 114 | <code>application/views/welcome_message.php</code> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 115 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 116 | <p>The corresponding controller for this page is found at:</p> |
Andrey Andreev | cd920b1 | 2013-07-23 18:29:07 +0300 | [diff] [blame] | 117 | <code>application/controllers/Welcome.php</code> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 118 | |
Greg Aker | 1cdb0fd | 2011-04-20 11:11:47 -0500 | [diff] [blame] | 119 | <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> |
| 120 | </div> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 121 | |
Alex Bilbie | beea5dc | 2012-06-02 11:13:54 +0100 | [diff] [blame] | 122 | <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] | 123 | </div> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 124 | |
| 125 | </body> |
Derek Allard | 687cdca | 2008-05-13 11:46:39 +0000 | [diff] [blame] | 126 | </html> |