Adapt to new directory structure.
This commit is contained in:
parent
50a0369ba1
commit
c229df33b5
7 changed files with 27 additions and 31 deletions
|
@ -2,10 +2,10 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>uBus - Stops</title>
|
||||
<?php include 'head.php'; ?>
|
||||
<?php include 'modules/head.php'; ?>
|
||||
</head>
|
||||
<body>
|
||||
<?php include 'nav.php'; ?>
|
||||
<?php include 'modules/nav.php'; ?>
|
||||
|
||||
<h1>Stops</h1>
|
||||
<p>This is a table of all the bus stops. Click on a stop's name to view its
|
||||
|
@ -22,7 +22,7 @@ on their way to it.</p>
|
|||
|
||||
|
||||
<?php
|
||||
include 'libdata.php';
|
||||
include 'modules/libdata.php';
|
||||
|
||||
foreach ($stops as $stop){
|
||||
echo '<tr>';
|
||||
|
@ -37,7 +37,7 @@ foreach ($stops as $stop){
|
|||
</table>
|
||||
|
||||
|
||||
<?php include 'foot.php'; ?>
|
||||
<?php include 'modules/foot.php'; ?>
|
||||
</body>
|
||||
</html
|
||||
|
||||
|
|
Reference in a new issue