Jump to content
MakeWebGames

medieval template


orsino

Recommended Posts

Just for info for those which don't own NWE, you may download the free version and you will discover how a template is done (found in the templates directory).

But for it's simplest form it is, with a CSS for the style:

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php echo $gameName; ?></title>
<link rel="icon" type="image/png"
   href="<?php echo $webBaseDir; ?>favicon.ico" />
<link href="<?php echo $webBaseDir; ?>templates/plain/plain.css"
   type="text/css" rel="stylesheet" />
<?php echo $content['header']; ?>
</head>
<body>
   <div id="statArea"><?php ImageGameTitle(); echo "<br><br>"; echo $content['stats']; ?></div>
   <div id="sideMenu">
       Menu: <br>
<?php echo $content['sideMenu']; ?>
<br><center><?php VerifyIt(); ?></center>
</div>
   <div id="mainContent"><?php echo $content['main']; ?></div><?php echo $content['footer']; ?>
</body>

 

The <br> tags have been removed the forums :mad:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...