summaryrefslogtreecommitdiff
path: root/includes/common.php
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-02 16:32:59 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-02 16:32:59 +0000
commit1035c6fc86f25759e9298b78e8bd232fdc912c41 (patch)
tree9f3e984a67374189f249250ba77574a6d2692d4b /includes/common.php
parentc81af7dec962c5d96d116670a3c06faf586b2326 (diff)
downloadwebsite-1035c6fc86f25759e9298b78e8bd232fdc912c41.tar.gz
website-1035c6fc86f25759e9298b78e8bd232fdc912c41.tar.bz2
website-1035c6fc86f25759e9298b78e8bd232fdc912c41.tar.xz
website-1035c6fc86f25759e9298b78e8bd232fdc912c41.zip
Integrated footer and header into common to solve including problem.
Diffstat (limited to 'includes/common.php')
-rw-r--r--includes/common.php142
1 files changed, 138 insertions, 4 deletions
diff --git a/includes/common.php b/includes/common.php
index fe7ac0a..93aef07 100644
--- a/includes/common.php
+++ b/includes/common.php
@@ -1,18 +1,152 @@
<?php
-/* Main include file for TMW website
- * (c) 2005 Bjørn Lindeijer
+/* Main include file for TMW website, including header and footer
+ * (c) 2005 Bjorn Lindeijer
*/
define('TMWWEBSITE', true);
function placeHeader($page_title)
{
- include("header.php");
+ echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html>
+ <head>
+ <title>The Mana World</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+ <meta http-equiv="Content-Language" content="en"/>
+ <link rel="icon" type="image/png" href="images/icon16.png"/>
+ <meta name="description" content="The Mana World is a free MMORPG game for Linux, MacOS X and Windows"/>
+ <meta name="keywords" content="The Mana World, Mana, World, MMORPG, RPG, free, GPL"/>
+ <meta name="author" content="The Mana World Dev Team"/>
+ <style type="text/css">
+ @import url("default.css");
+ </style>
+ </head>
+ <body>
+ <div id="page">
+
+ <div id="irc_info">
+ #manaworld<br />
+ irc.freenode.net
+ </div>
+
+ <div id="title">
+ <h1><span>The Mana World</span></h1>
+ </div>
+
+ <div id="main_topleft">
+ <div id="main_rightrepeat">
+ <div id="main_topright">
+ <div id="main_bottomright">
+ <div id="main">
+
+ <div style="clear: both;"></div>
+
+ <div id="sidebar">
+
+ <div class="section_topleft">
+ <div class="section_bottomleft">
+ <div class="section_topright">
+ <div class="section_bottomright">
+ <div class="section">
+ <ul>
+ <!-- No newlines after list items because IE 6 can't handle that properly -->
+ <li><a href="index.php">News</a></li><li><a href="about.php">About</a></li><li><a href="downloads.php">Downloads</a></li><li><a href="wiki">Wiki</a></li><li><a href="phpBB">Forum</a></li><li><a href="links.php">Links</a></li></ul>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="section_topleft">
+ <div class="section_bottomleft">
+ <div class="section_topright">
+ <div class="section_bottomright">
+ <div class="section" style="text-align: center;">
+ <a href="images/tmw-0.0.12-cave.png"><img src="images/tmw-0.0.12-cave-thumb.png" alt="screenshot" style="border: 1px solid #784f3f;"/></a>
+ <div style="text-align: center;"><a style="font-size: 7pt;" href="screenshots.php">more screenshots</a></div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="section_topleft">
+ <div class="section_bottomleft">
+ <div class="section_topright">
+ <div class="section_bottomright">
+ <div class="section">
+ <h3>Server Status</h3>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="section_topleft">
+ <div class="section_bottomleft">
+ <div class="section_topright">
+ <div class="section_bottomright">
+ <div class="section banners">
+ <a href="http://sourceforge.net">
+ <img src="http://sflogo.sourceforge.net/sflogo.php?group_id=106790&amp;type=1" alt="SourceForge.net"/></a><br />
+ <a href="http://nosoftwarepatents.com">
+ <img src="images/nswpat80x15.png" alt="No software patents"/></a><br />
+ <a href="http://www.gnu.org/copyleft/gpl.html">
+ <img src="images/gpl.png" alt="GPLed project"/></a><br />
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </div> <!-- /sidebar -->
+
+ <div id="contents_leftrepeat">
+ <div id="contents_topleft">
+ <div id="contents_bottomleft">
+ <div id="contents_rightrepeat">
+ <div id="contents_topright">
+ <div id="contents_bottomright">
+ <div id="contents">
+
+ <div class="main_title_topright">
+ <div class="main_title_bottomright">
+ <div class="main_title_topleft">
+ <h2><?=$page_title?></h2>
+ </div>
+ </div>
+ </div>
+<?php
}
function placeFooter()
{
- include("footer.php");
+?>
+ <div style="clear: both"></div>
+
+ </div> <!-- /contents -->
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </div> <!-- /main -->
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div id="footer">
+ &copy; 2004-2005 The Mana World Dev Team
+ </div>
+ </div> <!-- /page -->
+ </body>
+</html>
+<?php
}
?>