forked from mike-t/campfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (28 loc) · 807 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// ====================================
// Index
// ====================================
// A splash page welcoming users to Campfire
//
// Author: Michael Walton
// Updated: 06/06/2013
// ====================================
// include our custom php libraries
require $_SERVER['DOCUMENT_ROOT'].'/utils/libraries.php';
// set the welcome background
$welcome = true;
//include the page header
require $_SERVER['DOCUMENT_ROOT'].'/template/_header.php';
?>
<div class="row welcome-text">
<h1>go camping!</h1>
<ol>
<li><span>join campfire</span></li>
<li><span>find a campsite or walking trail</span></li>
<li><span>share your experience!</span></li>
</ol>
</div>
<?php
// include the page footer
require $_SERVER['DOCUMENT_ROOT'].'/template/_footer.php';
?>