The following files exists in this folder. Click to view.
page.php33 lines UTF-8 Unix (LF) 123456789101112131415161718192021222324252627282930313233
<?php
// -----------------------------------------------------------------------------
//
// template.php
// Denna fil är mallen för alla sidor som skrivs ut.
// Denna sida anropas från sidan som är skapad och skall skrivas ut.
$html = <<< EOD
<!doctype html>
<html lang="sv">
<head>
<meta charset="utf-8" />
<title>{$title}</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<main>
{$header}
{$html}
{$footer}
</main>
</body>
</html>
EOD;
//------------------------------------------------------------------------------
//
// Skriver ut webbsidan
//
echo $html;
exit;
?>