Simple template to start project with Codeigniter 3, Bootstrap 4 and Landing Page
To begin using this template, choose one of the following options to get started:
- Clone this repo:
git clone [email protected]:osande/coming-start.git ./coming
After downloading, simply edit the /app/views/coming.php
and CSS files included with the template in your favorite text editor to make changes. These are the only files you need to worry about, you can ignore everything else! To preview the changes you make to the code, you can open the localhost
file in your web browser.
/public_html/core
All assets for template
/public_html/assets
Plugins and Components for template
/public_html/vendor
sample: file Coming.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Coming extends CI_Controller {
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('coming'); // without .php
}
}
sample: file coming.php
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Coming Soon</title>
<meta name="description" content="Coming Soon">
<meta name="author" content="Punch-Line">
<link rel="stylesheet" href="assets/css/coming.css?v=1.0">
</head>
<body>
Coming Soon!!!
<script src="assets/js/scripts.js"></script>
</body>
</html>
This template uses follow libraries/packages:
- Codeigniter 3.1.11 - A powerful PHP framework with a very small footprint
- Codeigniter Modular Extensions - HMVC - Modular Extensions makes the CodeIgniter.
- Bootstrap 4.4.1 - The most popular HTML, CSS and JS library in the world.
- JQuery 3.4.1 - Do more with less
Coming Template was created by and is maintained by Punch-Line.
- A company by Osande Corp.