13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
// Footer file for common footers
|
|
$foothtml = <<<EOF
|
|
<div id='foot'>
|
|
<div id='footbar'>
|
|
<a href='mailto:me@jameswitzeman.net'>me@jameswitzeman.net</a>
|
|
</div>
|
|
</div>
|
|
EOF;
|
|
|
|
echo $foothtml;
|
|
?>
|