blob: b4cf9b4328dec3b80a9b59122428159294d5be0d [file] [log] [blame]
Derek Jonesf4a4bd82011-10-20 12:18:42 -05001<?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 *
11 * This source file is subject to the Open Software License (OSL 3.0) that is
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 Aker3a563982010-11-18 18:43:03 -060029<!DOCTYPE html>
30<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +000031<head>
Greg Aker3a563982010-11-18 18:43:03 -060032 <meta charset="utf-8">
33 <title>Welcome to CodeIgniter</title>
Derek Allard2067d1a2008-11-13 22:59:24 +000034
Greg Aker1cdb0fd2011-04-20 11:11:47 -050035 <style type="text/css">
Derek Allard2067d1a2008-11-13 22:59:24 +000036
Greg Aker1cdb0fd2011-04-20 11:11:47 -050037 ::selection{ background-color: #E13300; color: white; }
38 ::moz-selection{ background-color: #E13300; color: white; }
39 ::webkit-selection{ background-color: #E13300; color: white; }
Derek Allard2067d1a2008-11-13 22:59:24 +000040
Greg Aker1cdb0fd2011-04-20 11:11:47 -050041 body {
42 background-color: #fff;
43 margin: 40px;
44 font: 13px/20px normal Helvetica, Arial, sans-serif;
45 color: #4F5155;
46 }
Derek Allard2067d1a2008-11-13 22:59:24 +000047
Greg Aker1cdb0fd2011-04-20 11:11:47 -050048 a {
49 color: #003399;
50 background-color: transparent;
51 font-weight: normal;
52 }
Derek Allard2067d1a2008-11-13 22:59:24 +000053
Greg Aker1cdb0fd2011-04-20 11:11:47 -050054 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 Allard2067d1a2008-11-13 22:59:24 +000063
Greg Aker1cdb0fd2011-04-20 11:11:47 -050064 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 Allard2067d1a2008-11-13 22:59:24 +000094</head>
95<body>
96
Greg Aker1cdb0fd2011-04-20 11:11:47 -050097<div id="container">
98 <h1>Welcome to CodeIgniter!</h1>
Derek Allard2067d1a2008-11-13 22:59:24 +000099
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500100 <div id="body">
101 <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000102
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500103 <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 Allard2067d1a2008-11-13 22:59:24 +0000105
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500106 <p>The corresponding controller for this page is found at:</p>
107 <code>application/controllers/welcome.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000108
Greg Aker1cdb0fd2011-04-20 11:11:47 -0500109 <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 Allard2067d1a2008-11-13 22:59:24 +0000111
Troy McCormickce592c42011-09-07 11:23:58 -0700112 <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 -0500113</div>
Derek Allard2067d1a2008-11-13 22:59:24 +0000114
115</body>
Derek Allard687cdca2008-05-13 11:46:39 +0000116</html>