Added Home Page
This commit is contained in:
parent
e3ffc22a86
commit
c5d00ff608
2 changed files with 24 additions and 1 deletions
23
index.php
Normal file
23
index.php
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>uBus - Home</title>
|
||||||
|
<?php include 'head.php'; ?>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<?php include 'nav.php'; ?>
|
||||||
|
<h1>Home</h1>
|
||||||
|
<p>uBus is a generic web application that displays data regading buses,
|
||||||
|
routes and stops of public transport bus services. It uses modern web
|
||||||
|
technologies and frameworks: HTML5, CSS3, Bootstrap and jQuery to display
|
||||||
|
a beautiful and simple website, PHP to generate the content displayed and
|
||||||
|
the JSON file format to store and read data.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php include 'foot.php'; ?>
|
||||||
|
</body>
|
||||||
|
</html
|
||||||
|
|
||||||
|
|
2
nav.php
2
nav.php
|
@ -1,7 +1,7 @@
|
||||||
<nav class="navbar navbar-inverse">
|
<nav class="navbar navbar-inverse">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<a class="navbar-brand">uBus</a>
|
<a class="navbar-brand" href=".">uBus</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="navbar" >
|
<div id="navbar" >
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
|
|
Reference in a new issue