diff options
Diffstat (limited to 'htdocs/src')
-rw-r--r-- | htdocs/src/config.inc.php | 25 | ||||
-rw-r--r-- | htdocs/src/footer.inc.php | 8 | ||||
-rw-r--r-- | htdocs/src/header.inc.php | 31 |
3 files changed, 64 insertions, 0 deletions
diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php index e69de29..e93eb43 100644 --- a/htdocs/src/config.inc.php +++ b/htdocs/src/config.inc.php @@ -0,0 +1,25 @@ +<?php + +/* Foursquare Community Site + * + * Copyright (C) 2011 Foursquare Church. + * + * Developers: Jesse Morgan <jmorgan@foursquarestaff.com> + * + */ + +$CONFIG = array( + // Database Information + 'dbhost' => '127.0.0.1', + 'dbuser' => 'p4scommunity', + 'dbpass' => '', + 'dbname' => 'p4scommunity', + + // Site Information + 'sitetitle' => 'Foursquare Community', + 'urlroot' => 'http://localhost/~jesse/p4s/community/htdocs', + + +); + +?> diff --git a/htdocs/src/footer.inc.php b/htdocs/src/footer.inc.php new file mode 100644 index 0000000..83c48a5 --- /dev/null +++ b/htdocs/src/footer.inc.php @@ -0,0 +1,8 @@ +</div> + +<div id="footer"> +Copyright © 2011 <a href="http://myfoursquarechurch.com">Foursquare Church</a>. +</div> + +</body> +</html> diff --git a/htdocs/src/header.inc.php b/htdocs/src/header.inc.php new file mode 100644 index 0000000..f2966e4 --- /dev/null +++ b/htdocs/src/header.inc.php @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> +<head> + <title><?= $CONFIG['sitetitle'] ?></title> + + <link rel="stylesheet" href="<?= $CONFIG['urlroot'] ?>/css/main.css" /> + +</head> +<body> +<div id="header"> + <p><img src="<?= $CONFIG['urlroot'] ?>/images/logo.png" + alt="<?= $CONFIG['sitetitle'] ?>" /></p> + + <div id="about"> + Foursquare community is a place... + </div> +</div> + +<div id="nav"> + <ul> + <li><a href="" class="button">Create Post</a></li> + <li><a href="" class="button">Safety Tips</a></li> + <li><a href="" class="button">Contact Us</a></li> + </ul> +</div> + +<div id="buttonblock"> + <p>What are you looking for?</p> +</div> + +<div id="content"> |