<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame. Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Website Title</title>
<meta name="description" content="website description for search engines" />
<style type="text/css">
/* 054950 789A9F EDF4F5 FFFFFF F78F1E*/
body{
text-align:center;
background-color: #789A9F;
margin:0;
padding: 0;
}
h1{
font-size: 40pt;
}
h1, h2, h3, h4{
color: #F78F1E;
}
p{
color: #054950;
}
em{
font-weight: bold;
font-style: normal;
color: #0191C8;
}
#header{
width: 100%;
height: 100px;
background-color: #EDF4F5;
margin:0;
}
#container{
margin:0;
margin-left: auto;
margin-right: auto;
width: 960px;
background-color: #EDF4F5;
}
#content{
margin: 30px;
text-align:left;
background-color: #EDF4F5;
min-height: 600px;
}
</style>
</head>
<body>
<div id="header">
<h1>Your first GnomePHP installation</h1>
</div><!--end of header div-->
<div id="container">
<div id="content">
<h2>Why do I see this page?</h2>
<p>You see this page because this is the first installation of GnomePHP, you are now running the "myapp" application. This is a very simple application and it's good to get you started.</p>
<h2>How do I change this page?</h2>
<p>Look in the View: <em>apps/myapp/view/index.php</em> and the Controller: <em>apps/myapp/controller/Main.php</em>. You should also see the router rule for the main page in the file <em>apps/myapp/config/routes.php</em>.</p>
<h2>Now it's up to you!</h2>
<p>Using GnomePHP you can now create PHP web applications very fast using the latest technologies of PHP. Rapid development is the key to success.</p>
</div><!--end of content div-->
</div><!--end of container div-->
</body>
</html>