summaryrefslogtreecommitdiff
path: root/examples/brochure/templates/default.html
blob: c587bd5f94ab2c73686df3971104bc7cec6081ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <title>MyAweSomeCompany - $title</title>
        <link rel="stylesheet" type="text/css" href="$root/css/default.css" />
    </head>
    <body>
        <h1>MyAweSomeCompany - $title</h1>
        <div id="navigation">
            <a href="$root/index.html">Home</a>
            <a href="$root/about.html">About</a>
            <a href="$root/products.html">Products</a>
        </div>

        $body
    </body>
</html>