View sourcecode

The following files exists in this folder. Click to view.

page.php

33 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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;
?>