blob: 65f62a92202c27eb3335643efae15c91c4f977be [file] [log] [blame]
Andrey Andreeve734b382012-03-26 13:42:36 +03001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
Andrey Andreeve734b382012-03-26 13:42:36 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Academic Free License version 3.0
Andrey Andreeve734b382012-03-26 13:42:36 +030010 *
Derek Jones61df9062011-10-21 09:55:40 -050011 * This source file is subject to the Academic Free License (AFL 3.0) that is
Derek Jonesf4a4bd82011-10-20 12:18:42 -050012 * 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
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @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 */
Andrey Andreeve734b382012-03-26 13:42:36 +030027?><!DOCTYPE html>
Greg Aker3a563982010-11-18 18:43:03 -060028<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +000029<head>
Greg Aker3a563982010-11-18 18:43:03 -060030 <meta charset="utf-8">
31 <title>Welcome to CodeIgniter</title>
Derek Allard2067d1a2008-11-13 22:59:24 +000032
Greg Aker1cdb0fd2011-04-20 11:11:47 -050033 <style type="text/css">
Derek Allard2067d1a2008-11-13 22:59:24 +000034
Greg Aker1cdb0fd2011-04-20 11:11:47 -050035 ::selection{ background-color: #E13300; color: white; }
36 ::moz-selection{ background-color: #E13300; color: white; }
37 ::webkit-selection{ background-color: #E13300; color: white; }
Derek Allard2067d1a2008-11-13 22:59:24 +000038
Greg Aker1cdb0fd2011-04-20 11:11:47 -050039 body {
40 background-color: #fff;
41 margin: 40px;
42 font: 13px/20px normal Helvetica, Arial, sans-serif;
43 color: #4F5155;
44 }
Derek Allard2067d1a2008-11-13 22:59:24 +000045
Greg Aker1cdb0fd2011-04-20 11:11:47 -050046 a {
47 color: #003399;
48 background-color: transparent;
49 font-weight: normal;
50 }
Derek Allard2067d1a2008-11-13 22:59:24 +000051
Greg Aker1cdb0fd2011-04-20 11:11:47 -050052 h1 {
53 color: #444;
54 background-color: transparent;
55 border-bottom: 1px solid #D0D0D0;
56 font-size: 19px;
57 font-weight: normal;
58 margin: 0 0 14px 0;
59 padding: 14px 15px 10px 15px;
60 }
Derek Allard2067d1a2008-11-13 22:59:24 +000061
Greg Aker1cdb0fd2011-04-20 11:11:47 -050062 code {
63 font-family: Consolas, Monaco, Courier New, Courier, monospace;
64 font-size: 12px;
65 background-color: #f9f9f9;
66 border: 1px solid #D0D0D0;
67 color: #002166;
68 display: block;
69 margin: 14px 0 14px 0;
70 padding: 12px 10px 12px 10px;
71 }
72
73 #body{
74 margin: 0 15px 0 15px;
75 }
Andrey Andreeve734b382012-03-26 13:42:36 +030076
Greg Aker1cdb0fd2011-04-20 11:11:47 -050077 p.footer{
78 text-align: right;
79 font-size: 11px;
80 border-top: 1px solid #D0D0D0;
81 line-height: 32px;
82 padding: 0 10px 0 10px;
83 margin: 20px 0 0 0;
84 }
Andrey Andreeve734b382012-03-26 13:42:36 +030085
Greg Aker1cdb0fd2011-04-20 11:11:47 -050086 #container{
87 margin: 10px;
88 border: 1px solid #D0D0D0;
89 -webkit-box-shadow: 0 0 8px #D0D0D0;
90 }
91 </style>
Derek Allard2067d1a2008-11-13 22:59:24 +000092</head>
93<body>
94
Greg Aker1cdb0fd2011-04-20 11:11:47 -050095<div id="container">
96 <h1>Welcome to CodeIgniter!</h1>
Derek Allard2067d1a2008-11-13 22:59:24 +000097
Greg Aker1cdb0fd2011-04-20 11:11:47 -050098 <div id="body">
99 <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000100
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500101 <p>If you would like to edit this page you'll find it located at:</p>
102 <code>application/views/welcome_message.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000103
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500104 <p>The corresponding controller for this page is found at:</p>
105 <code>application/controllers/welcome.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000106
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500107 <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>
108 </div>
Derek Allard2067d1a2008-11-13 22:59:24 +0000109
Alex Bilbiebeea5dc2012-06-02 11:13:54 +0100110 <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 -0500111</div>
Derek Allard2067d1a2008-11-13 22:59:24 +0000112
113</body>
Derek Allard687cdca2008-05-13 11:46:39 +0000114</html>