blob: 1b036c06c8d68c18eda0e5ffeb2187a030353354 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreeve734b382012-03-26 13:42:36 +03008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreeve734b382012-03-26 13:42:36 +030010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * 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 Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * 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
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Jonesf4a4bd82011-10-20 12:18:42 -050036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Andrey Andreeve734b382012-03-26 13:42:36 +030039?><!DOCTYPE html>
Greg Aker3a563982010-11-18 18:43:03 -060040<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +000041<head>
Greg Aker3a563982010-11-18 18:43:03 -060042 <meta charset="utf-8">
43 <title>Welcome to CodeIgniter</title>
Derek Allard2067d1a2008-11-13 22:59:24 +000044
Greg Aker1cdb0fd2011-04-20 11:11:47 -050045 <style type="text/css">
Derek Allard2067d1a2008-11-13 22:59:24 +000046
Andrey Andreev0af02582012-10-05 13:34:32 +030047 ::selection { background-color: #E13300; color: white; }
48 ::-moz-selection { background-color: #E13300; color: white; }
49 ::-webkit-selection { background-color: #E13300; color: white; }
Derek Allard2067d1a2008-11-13 22:59:24 +000050
Greg Aker1cdb0fd2011-04-20 11:11:47 -050051 body {
52 background-color: #fff;
53 margin: 40px;
54 font: 13px/20px normal Helvetica, Arial, sans-serif;
55 color: #4F5155;
56 }
Derek Allard2067d1a2008-11-13 22:59:24 +000057
Greg Aker1cdb0fd2011-04-20 11:11:47 -050058 a {
59 color: #003399;
60 background-color: transparent;
61 font-weight: normal;
62 }
Derek Allard2067d1a2008-11-13 22:59:24 +000063
Greg Aker1cdb0fd2011-04-20 11:11:47 -050064 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 Allard2067d1a2008-11-13 22:59:24 +000073
Greg Aker1cdb0fd2011-04-20 11:11:47 -050074 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 Andreev0af02582012-10-05 13:34:32 +030085 #body {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050086 margin: 0 15px 0 15px;
87 }
Andrey Andreeve734b382012-03-26 13:42:36 +030088
Andrey Andreev0af02582012-10-05 13:34:32 +030089 p.footer {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050090 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 Andreeve734b382012-03-26 13:42:36 +030097
Andrey Andreev0af02582012-10-05 13:34:32 +030098 #container {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050099 margin: 10px;
100 border: 1px solid #D0D0D0;
Andrey Andreev797fd352014-01-03 11:32:46 +0200101 box-shadow: 0 0 8px #D0D0D0;
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500102 }
103 </style>
Derek Allard2067d1a2008-11-13 22:59:24 +0000104</head>
105<body>
106
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500107<div id="container">
108 <h1>Welcome to CodeIgniter!</h1>
Derek Allard2067d1a2008-11-13 22:59:24 +0000109
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500110 <div id="body">
111 <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000112
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500113 <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 Allard2067d1a2008-11-13 22:59:24 +0000115
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500116 <p>The corresponding controller for this page is found at:</p>
Andrey Andreevcd920b12013-07-23 18:29:07 +0300117 <code>application/controllers/Welcome.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000118
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500119 <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 Allard2067d1a2008-11-13 22:59:24 +0000121
Alex Bilbiebeea5dc2012-06-02 11:13:54 +0100122 <p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT === 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p>
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500123</div>
Derek Allard2067d1a2008-11-13 22:59:24 +0000124
125</body>
Derek Allard687cdca2008-05-13 11:46:39 +0000126</html>