elements for the site function site_head($title) { return "{$title}\n" . "\n" . "\n" . "\n" . "\n"; } /// Get a single top-level navigation item for the site function site_navitem($url, $text, $hide = false) { $selected = $url == $_SERVER['REQUEST_URI']; $classes = []; if ($selected) { $classes[] = "selected"; } if ($hide && !$selected) { $classes[] = "hidden"; } $classes = count($classes) > 0 ? (" class=\"" . implode(" ", $classes) . "\"") : ""; return "{$text}"; } /// Get the standard page header elements for the site function site_header($title) { return "

{$title}

\n" . "\n"; } /// Get the standard page footer elements for the site function site_footer() { return "
\n" . "

Spragg Software Services Ltd is registered in England, No. 11248242.\n" . " Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ.\n" . " VAT reg No. 295343283.

\n"; } ?>