website/parts/head.inc
Jeff Teunissen 9e6f75ccbd Update for PHP 7.x
PHP 7 doesn't like the old short tags we were using (it's possible to re-enable
them, but won't be for version 8, so we might as well switch now), and the old
MySQL APIs are now gone entirely, replaced with something different.

This should make everything work at least as well as it used to.

Also, one file used to be checked in with CRLF line endings. ??
2022-04-27 13:14:47 -04:00

23 lines
816 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<LINK rel="Icon" type="image/png" href="/img/icons16/qficon.png">
<LINK rel="StyleSheet" type="text/css" href="/styles/<?=$theme?>/level1.css">
<META http-equiv="Content-Script-Type" content="text/javascript">
<META http-equiv="Content-Style-Type" content="text/css">
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<STYLE type="text/css" media="screen"><!--
@import url(/styles/<?=$theme?>/level2.css);
--></STYLE>
<TITLE><?php
switch ($theme) {
case "christmas":
echo "Happy Holidays from ";
break;
default:
}
echo "$siteName: $pageName";
?></TITLE>
<SCRIPT type="text/javascript"><?php include siteHome . "/parts/menuResize.js"; ?></SCRIPT>
</HEAD>
<BODY>