include alsharpton
dvanhorn <[email protected]> Tue, 03 Feb 2004 02:37:32 -0500
| Newsgroups | gmane.org.ballistichelmet.devel |
|---|---|
| Message-ID | <[email protected]> |
I've made some new files in alsharpton/
bh_doctype
bh_head
bh_body_preamble
bh_body_postamble
They are meant to be used like this:
<?php include 'bh_doctype'; ?>
<html ...>
<head>
<title>Title</title>
<?php include 'bh_head'; ?>
</head>
<body>
<?php include 'bh_body_preamble'; ?>
...
<?php include 'bh_body_postamble'; ?>
</body>
</html>
See alsharpton/index.php for an example.