blob: 66b1efd6c4a68575c1c6d80459d2837c08e8adbd [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Andrey Andreevc5536aa2012-11-01 17:33:58 +02002defined('BASEPATH') OR exit('No direct script access allowed');
Andrey Andreeve734b382012-03-26 13:42:36 +03003?><!DOCTYPE html>
Greg Aker3a563982010-11-18 18:43:03 -06004<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +00005<head>
Greg Aker3a563982010-11-18 18:43:03 -06006 <meta charset="utf-8">
7 <title>Welcome to CodeIgniter</title>
Derek Allard2067d1a2008-11-13 22:59:24 +00008
Greg Aker1cdb0fd2011-04-20 11:11:47 -05009 <style type="text/css">
Derek Allard2067d1a2008-11-13 22:59:24 +000010
Andrey Andreev0af02582012-10-05 13:34:32 +030011 ::selection { background-color: #E13300; color: white; }
12 ::-moz-selection { background-color: #E13300; color: white; }
13 ::-webkit-selection { background-color: #E13300; color: white; }
Derek Allard2067d1a2008-11-13 22:59:24 +000014
Greg Aker1cdb0fd2011-04-20 11:11:47 -050015 body {
16 background-color: #fff;
17 margin: 40px;
18 font: 13px/20px normal Helvetica, Arial, sans-serif;
19 color: #4F5155;
20 }
Derek Allard2067d1a2008-11-13 22:59:24 +000021
Greg Aker1cdb0fd2011-04-20 11:11:47 -050022 a {
23 color: #003399;
24 background-color: transparent;
25 font-weight: normal;
26 }
Derek Allard2067d1a2008-11-13 22:59:24 +000027
Greg Aker1cdb0fd2011-04-20 11:11:47 -050028 h1 {
29 color: #444;
30 background-color: transparent;
31 border-bottom: 1px solid #D0D0D0;
32 font-size: 19px;
33 font-weight: normal;
34 margin: 0 0 14px 0;
35 padding: 14px 15px 10px 15px;
36 }
Derek Allard2067d1a2008-11-13 22:59:24 +000037
Greg Aker1cdb0fd2011-04-20 11:11:47 -050038 code {
39 font-family: Consolas, Monaco, Courier New, Courier, monospace;
40 font-size: 12px;
41 background-color: #f9f9f9;
42 border: 1px solid #D0D0D0;
43 color: #002166;
44 display: block;
45 margin: 14px 0 14px 0;
46 padding: 12px 10px 12px 10px;
47 }
48
Andrey Andreev0af02582012-10-05 13:34:32 +030049 #body {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050050 margin: 0 15px 0 15px;
51 }
Andrey Andreeve734b382012-03-26 13:42:36 +030052
Andrey Andreev0af02582012-10-05 13:34:32 +030053 p.footer {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050054 text-align: right;
55 font-size: 11px;
56 border-top: 1px solid #D0D0D0;
57 line-height: 32px;
58 padding: 0 10px 0 10px;
59 margin: 20px 0 0 0;
60 }
Andrey Andreeve734b382012-03-26 13:42:36 +030061
Andrey Andreev0af02582012-10-05 13:34:32 +030062 #container {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050063 margin: 10px;
64 border: 1px solid #D0D0D0;
Andrey Andreev797fd352014-01-03 11:32:46 +020065 box-shadow: 0 0 8px #D0D0D0;
Greg Aker1cdb0fd2011-04-20 11:11:47 -050066 }
67 </style>
Derek Allard2067d1a2008-11-13 22:59:24 +000068</head>
69<body>
70
Greg Aker1cdb0fd2011-04-20 11:11:47 -050071<div id="container">
72 <h1>Welcome to CodeIgniter!</h1>
Derek Allard2067d1a2008-11-13 22:59:24 +000073
Greg Aker1cdb0fd2011-04-20 11:11:47 -050074 <div id="body">
75 <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +000076
Greg Aker1cdb0fd2011-04-20 11:11:47 -050077 <p>If you would like to edit this page you'll find it located at:</p>
78 <code>application/views/welcome_message.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +000079
Greg Aker1cdb0fd2011-04-20 11:11:47 -050080 <p>The corresponding controller for this page is found at:</p>
Andrey Andreevcd920b12013-07-23 18:29:07 +030081 <code>application/controllers/Welcome.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +000082
Greg Aker1cdb0fd2011-04-20 11:11:47 -050083 <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>
84 </div>
Derek Allard2067d1a2008-11-13 22:59:24 +000085
Alex Bilbiebeea5dc2012-06-02 11:13:54 +010086 <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 -050087</div>
Derek Allard2067d1a2008-11-13 22:59:24 +000088
89</body>
Derek Allard687cdca2008-05-13 11:46:39 +000090</html>