PHP Classes

File: application/views/welcome.php

Recommend this page to a friend!
  Classes of Minh Tien   Codeme PHP Framework   application/views/welcome.php   Download  
File: application/views/welcome.php
Role: Auxiliary script
Content type: text/plain
Description: Example script
Class: Codeme PHP Framework
MVC Web application development framework
Author: By
Last change: Update of application/views/welcome.php
Date: 3 months ago
Size: 2,167 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="">
    <link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">

    <title>Theme Template for Bootstrap</title>

    <!-- Bootstrap core CSS -->
    <link href="<?php echo ROOT_URL;?>bootstrap/css/bootstrap.css" rel="stylesheet">
    <!-- Bootstrap theme -->
    <link href="<?php echo ROOT_URL;?>bootstrap/css/flat-theme.css" rel="stylesheet">

    <link href="<?php echo ROOT_URL;?>bootstrap/css/custom.css" rel="stylesheet">


    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
    <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->

    <script src="<?php echo ROOT_URL;?>bootstrap/js/jquery-2.0.0.min.js"></script>
    <script src="<?php echo ROOT_URL;?>bootstrap/js/jquery.min.map"></script>

    <script src="<?php echo ROOT_URL;?>bootstrap/js/custom.js"></script>

</head>

<body>


<div class="container">
    <div class="row">
        <div class="col-lg-12">

                <h1>Welcome to Codeme PHP Framework !</h1>

            <p>
                Edit file <strong>config.php</strong> and setting your site information.
            </p>
            <p>
                Root path is: <span class="label label-default"><?php echo dirname(dirname(dirname(__FILE__))).'/';?></span>
            </p>

            <p>
                Edit file <strong>.htaccess</strong> and change <b>RewriteBase</b> path to your path. Use <b>RewriteBase /</b> with host shared (hostgator,bluehost..).
            </p>




        </div>
    </div>
</div>



<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->

<script src="<?php echo ROOT_URL;?>boostrap/js/bootstrap.min.js"></script>

</body>
</html>