blob: 341a8d0deb4d41b2867457c63699b5b4f35a834d [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
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
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, 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 Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Andrey Andreeve734b382012-03-26 13:42:36 +030028?><!DOCTYPE html>
Greg Aker3a563982010-11-18 18:43:03 -060029<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +000030<head>
Greg Aker3a563982010-11-18 18:43:03 -060031 <meta charset="utf-8">
32 <title>Welcome to CodeIgniter</title>
Derek Allard2067d1a2008-11-13 22:59:24 +000033
Greg Aker1cdb0fd2011-04-20 11:11:47 -050034 <style type="text/css">
Derek Allard2067d1a2008-11-13 22:59:24 +000035
Andrey Andreev0af02582012-10-05 13:34:32 +030036 ::selection { background-color: #E13300; color: white; }
37 ::-moz-selection { background-color: #E13300; color: white; }
38 ::-webkit-selection { background-color: #E13300; color: white; }
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Greg Aker1cdb0fd2011-04-20 11:11:47 -050040 body {
41 background-color: #fff;
42 margin: 40px;
43 font: 13px/20px normal Helvetica, Arial, sans-serif;
44 color: #4F5155;
45 }
Derek Allard2067d1a2008-11-13 22:59:24 +000046
Greg Aker1cdb0fd2011-04-20 11:11:47 -050047 a {
48 color: #003399;
49 background-color: transparent;
50 font-weight: normal;
51 }
Derek Allard2067d1a2008-11-13 22:59:24 +000052
Greg Aker1cdb0fd2011-04-20 11:11:47 -050053 h1 {
54 color: #444;
55 background-color: transparent;
56 border-bottom: 1px solid #D0D0D0;
57 font-size: 19px;
58 font-weight: normal;
59 margin: 0 0 14px 0;
60 padding: 14px 15px 10px 15px;
61 }
Derek Allard2067d1a2008-11-13 22:59:24 +000062
Greg Aker1cdb0fd2011-04-20 11:11:47 -050063 code {
64 font-family: Consolas, Monaco, Courier New, Courier, monospace;
65 font-size: 12px;
66 background-color: #f9f9f9;
67 border: 1px solid #D0D0D0;
68 color: #002166;
69 display: block;
70 margin: 14px 0 14px 0;
71 padding: 12px 10px 12px 10px;
72 }
73
Andrey Andreev0af02582012-10-05 13:34:32 +030074 #body {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050075 margin: 0 15px 0 15px;
76 }
Andrey Andreeve734b382012-03-26 13:42:36 +030077
Andrey Andreev0af02582012-10-05 13:34:32 +030078 p.footer {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050079 text-align: right;
80 font-size: 11px;
81 border-top: 1px solid #D0D0D0;
82 line-height: 32px;
83 padding: 0 10px 0 10px;
84 margin: 20px 0 0 0;
85 }
Andrey Andreeve734b382012-03-26 13:42:36 +030086
Andrey Andreev0af02582012-10-05 13:34:32 +030087 #container {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050088 margin: 10px;
89 border: 1px solid #D0D0D0;
Andrey Andreev797fd352014-01-03 11:32:46 +020090 box-shadow: 0 0 8px #D0D0D0;
Greg Aker1cdb0fd2011-04-20 11:11:47 -050091 }
92 </style>
Derek Allard2067d1a2008-11-13 22:59:24 +000093</head>
94<body>
95
Greg Aker1cdb0fd2011-04-20 11:11:47 -050096<div id="container">
97 <h1>Welcome to CodeIgniter!</h1>
Derek Allard2067d1a2008-11-13 22:59:24 +000098
Greg Aker1cdb0fd2011-04-20 11:11:47 -050099 <div id="body">
100 <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000101
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500102 <p>If you would like to edit this page you'll find it located at:</p>
103 <code>application/views/welcome_message.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000104
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500105 <p>The corresponding controller for this page is found at:</p>
Andrey Andreevcd920b12013-07-23 18:29:07 +0300106 <code>application/controllers/Welcome.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000107
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500108 <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>
109 </div>
Derek Allard2067d1a2008-11-13 22:59:24 +0000110
Alex Bilbiebeea5dc2012-06-02 11:13:54 +0100111 <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 -0500112</div>
Derek Allard2067d1a2008-11-13 22:59:24 +0000113
114</body>
Derek Allard687cdca2008-05-13 11:46:39 +0000115</html>