blob: f5115630b7ad8002539e044fb7aff967a2576138 [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; }
Derek Allard2067d1a2008-11-13 22:59:24 +000013
Greg Aker1cdb0fd2011-04-20 11:11:47 -050014 body {
15 background-color: #fff;
16 margin: 40px;
17 font: 13px/20px normal Helvetica, Arial, sans-serif;
18 color: #4F5155;
19 }
Derek Allard2067d1a2008-11-13 22:59:24 +000020
Greg Aker1cdb0fd2011-04-20 11:11:47 -050021 a {
22 color: #003399;
23 background-color: transparent;
24 font-weight: normal;
25 }
Derek Allard2067d1a2008-11-13 22:59:24 +000026
Greg Aker1cdb0fd2011-04-20 11:11:47 -050027 h1 {
28 color: #444;
29 background-color: transparent;
30 border-bottom: 1px solid #D0D0D0;
31 font-size: 19px;
32 font-weight: normal;
33 margin: 0 0 14px 0;
34 padding: 14px 15px 10px 15px;
35 }
Derek Allard2067d1a2008-11-13 22:59:24 +000036
Greg Aker1cdb0fd2011-04-20 11:11:47 -050037 code {
38 font-family: Consolas, Monaco, Courier New, Courier, monospace;
39 font-size: 12px;
40 background-color: #f9f9f9;
41 border: 1px solid #D0D0D0;
42 color: #002166;
43 display: block;
44 margin: 14px 0 14px 0;
45 padding: 12px 10px 12px 10px;
46 }
47
Andrey Andreev0af02582012-10-05 13:34:32 +030048 #body {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050049 margin: 0 15px 0 15px;
50 }
Andrey Andreeve734b382012-03-26 13:42:36 +030051
Andrey Andreev0af02582012-10-05 13:34:32 +030052 p.footer {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050053 text-align: right;
54 font-size: 11px;
55 border-top: 1px solid #D0D0D0;
56 line-height: 32px;
57 padding: 0 10px 0 10px;
58 margin: 20px 0 0 0;
59 }
Andrey Andreeve734b382012-03-26 13:42:36 +030060
Andrey Andreev0af02582012-10-05 13:34:32 +030061 #container {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050062 margin: 10px;
63 border: 1px solid #D0D0D0;
Andrey Andreev797fd352014-01-03 11:32:46 +020064 box-shadow: 0 0 8px #D0D0D0;
Greg Aker1cdb0fd2011-04-20 11:11:47 -050065 }
66 </style>
Derek Allard2067d1a2008-11-13 22:59:24 +000067</head>
68<body>
69
Greg Aker1cdb0fd2011-04-20 11:11:47 -050070<div id="container">
71 <h1>Welcome to CodeIgniter!</h1>
Derek Allard2067d1a2008-11-13 22:59:24 +000072
Greg Aker1cdb0fd2011-04-20 11:11:47 -050073 <div id="body">
74 <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +000075
Greg Aker1cdb0fd2011-04-20 11:11:47 -050076 <p>If you would like to edit this page you'll find it located at:</p>
77 <code>application/views/welcome_message.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +000078
Greg Aker1cdb0fd2011-04-20 11:11:47 -050079 <p>The corresponding controller for this page is found at:</p>
Andrey Andreevcd920b12013-07-23 18:29:07 +030080 <code>application/controllers/Welcome.php</code>
Derek Allard2067d1a2008-11-13 22:59:24 +000081
Greg Aker1cdb0fd2011-04-20 11:11:47 -050082 <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>
83 </div>
Derek Allard2067d1a2008-11-13 22:59:24 +000084
Alex Bilbiebeea5dc2012-06-02 11:13:54 +010085 <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 -050086</div>
Derek Allard2067d1a2008-11-13 22:59:24 +000087
88</body>
Derek Allard687cdca2008-05-13 11:46:39 +000089</html>