mirror of
https://git.code.sf.net/p/quake/website
synced 2025-02-12 06:50:43 +00:00
added ../part
This commit is contained in:
parent
0bd736db68
commit
b1a42078ef
4 changed files with 28 additions and 28 deletions
|
@ -1,21 +1,21 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
$sitename = "The QuakeForge Project";
|
$sitename = "The QuakeForge Project";
|
||||||
$pagename = "Page Name";
|
$pagename = "Page Name";
|
||||||
require("parts/library.php"); // Load function library
|
require("../parts/library.php"); // Load function library
|
||||||
include("parts/head.php"); // Load the HEAD and open BODY
|
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||||
include("parts/topstrip.php"); // Display top strip
|
include("../parts/topstrip.php"); // Display top strip
|
||||||
include("parts/titletable.php"); // Display main title w/ logos
|
include("../parts/titletable.php"); // Display main title w/ logos
|
||||||
?>
|
?>
|
||||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||||
<TR valign="top">
|
<TR valign="top">
|
||||||
<?php
|
<?php
|
||||||
include("parts/menu.php"); // Import left-side menus
|
include("../parts/menu.php"); // Import left-side menus
|
||||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||||
?>
|
?>
|
||||||
<TD width="100%">
|
<TD width="100%">
|
||||||
<?php
|
<?php
|
||||||
$focused = "none"; // name of focused icon
|
$focused = "none"; // name of focused icon
|
||||||
include( "parts/topmain.php" ); // Display content top table
|
include( "../parts/topmain.php" ); // Display content top table
|
||||||
?>
|
?>
|
||||||
<P>
|
<P>
|
||||||
Body Goes Here
|
Body Goes Here
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
<TR>
|
<TR>
|
||||||
<TD COLSPAN="4">
|
<TD COLSPAN="4">
|
||||||
<?php
|
<?php
|
||||||
include("parts/copyright.php");
|
include("../parts/copyright.php");
|
||||||
?>
|
?>
|
||||||
</TD>
|
</TD>
|
||||||
</TR>
|
</TR>
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
$sitename = "The QuakeForge Project";
|
$sitename = "The QuakeForge Project";
|
||||||
$pagename = "Page Name";
|
$pagename = "Page Name";
|
||||||
require("parts/library.php"); // Load function library
|
require("../parts/library.php"); // Load function library
|
||||||
include("parts/head.php"); // Load the HEAD and open BODY
|
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||||
include("parts/topstrip.php"); // Display top strip
|
include("../parts/topstrip.php"); // Display top strip
|
||||||
include("parts/titletable.php"); // Display main title w/ logos
|
include("../parts/titletable.php"); // Display main title w/ logos
|
||||||
?>
|
?>
|
||||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||||
<TR valign="top">
|
<TR valign="top">
|
||||||
<?php
|
<?php
|
||||||
include("parts/menu.php"); // Import left-side menus
|
include("../parts/menu.php"); // Import left-side menus
|
||||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||||
?>
|
?>
|
||||||
<TD width="100%">
|
<TD width="100%">
|
||||||
<?php
|
<?php
|
||||||
$focused = "none"; // name of focused icon
|
$focused = "none"; // name of focused icon
|
||||||
include( "parts/topmain.php" ); // Display content top table
|
include( "../parts/topmain.php" ); // Display content top table
|
||||||
?>
|
?>
|
||||||
<P>
|
<P>
|
||||||
Body Goes Here
|
Body Goes Here
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
<TR>
|
<TR>
|
||||||
<TD COLSPAN="4">
|
<TD COLSPAN="4">
|
||||||
<?php
|
<?php
|
||||||
include("parts/copyright.php");
|
include("../parts/copyright.php");
|
||||||
?>
|
?>
|
||||||
</TD>
|
</TD>
|
||||||
</TR>
|
</TR>
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
$sitename = "The QuakeForge Project";
|
$sitename = "The QuakeForge Project";
|
||||||
$pagename = "Page Name";
|
$pagename = "Page Name";
|
||||||
require("parts/library.php"); // Load function library
|
require("../parts/library.php"); // Load function library
|
||||||
include("parts/head.php"); // Load the HEAD and open BODY
|
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||||
include("parts/topstrip.php"); // Display top strip
|
include("../parts/topstrip.php"); // Display top strip
|
||||||
include("parts/titletable.php"); // Display main title w/ logos
|
include("../parts/titletable.php"); // Display main title w/ logos
|
||||||
?>
|
?>
|
||||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||||
<TR valign="top">
|
<TR valign="top">
|
||||||
<?php
|
<?php
|
||||||
include("parts/menu.php"); // Import left-side menus
|
include("../parts/menu.php"); // Import left-side menus
|
||||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||||
?>
|
?>
|
||||||
<TD width="100%">
|
<TD width="100%">
|
||||||
<?php
|
<?php
|
||||||
$focused = "none"; // name of focused icon
|
$focused = "none"; // name of focused icon
|
||||||
include( "parts/topmain.php" ); // Display content top table
|
include( "../parts/topmain.php" ); // Display content top table
|
||||||
?>
|
?>
|
||||||
<P>
|
<P>
|
||||||
Body Goes Here
|
Body Goes Here
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
<TR>
|
<TR>
|
||||||
<TD COLSPAN="4">
|
<TD COLSPAN="4">
|
||||||
<?php
|
<?php
|
||||||
include("parts/copyright.php");
|
include("../parts/copyright.php");
|
||||||
?>
|
?>
|
||||||
</TD>
|
</TD>
|
||||||
</TR>
|
</TR>
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
$sitename = "The QuakeForge Project";
|
$sitename = "The QuakeForge Project";
|
||||||
$pagename = "Page Name";
|
$pagename = "Page Name";
|
||||||
require("parts/library.php"); // Load function library
|
require("../parts/library.php"); // Load function library
|
||||||
include("parts/head.php"); // Load the HEAD and open BODY
|
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||||
include("parts/topstrip.php"); // Display top strip
|
include("../parts/topstrip.php"); // Display top strip
|
||||||
include("parts/titletable.php"); // Display main title w/ logos
|
include("../parts/titletable.php"); // Display main title w/ logos
|
||||||
?>
|
?>
|
||||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||||
<TR valign="top">
|
<TR valign="top">
|
||||||
<?php
|
<?php
|
||||||
include("parts/menu.php"); // Import left-side menus
|
include("../parts/menu.php"); // Import left-side menus
|
||||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||||
?>
|
?>
|
||||||
<TD width="100%">
|
<TD width="100%">
|
||||||
<?php
|
<?php
|
||||||
$focused = "none"; // name of focused icon
|
$focused = "none"; // name of focused icon
|
||||||
include( "parts/topmain.php" ); // Display content top table
|
include( "../parts/topmain.php" ); // Display content top table
|
||||||
?>
|
?>
|
||||||
<P>
|
<P>
|
||||||
Body Goes Here
|
Body Goes Here
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
<TR>
|
<TR>
|
||||||
<TD COLSPAN="4">
|
<TD COLSPAN="4">
|
||||||
<?php
|
<?php
|
||||||
include("parts/copyright.php");
|
include("../parts/copyright.php");
|
||||||
?>
|
?>
|
||||||
</TD>
|
</TD>
|
||||||
</TR>
|
</TR>
|
||||||
|
|
Loading…
Reference in a new issue