File: page_layout

package info (click to toggle)
swish-e 2.4.3-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,308 kB
  • ctags: 7,642
  • sloc: ansic: 47,402; sh: 8,508; perl: 5,281; makefile: 723; xml: 9
file content (55 lines) | stat: -rw-r--r-- 1,296 bytes parent folder | download | duplicates (11)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
[% # This template defines the layout of the site %]
<head>
    <style type="text/css">
        [% # Normally you would @import "style.css" %]
        [% INSERT style.css %]
        [% INSERT markup.css %]
    </style>

    <title>[% config.title %]</title>
</head>
<body>

<div id="overall">
    <div class="header">
        [% PROCESS common_header %]
    </div>

    <div class="content">
        <div class="leftcolumn">
            <div class="node">
                <h1>Menu Items here</h1>
                <a href="http://swish-e.org">Swish-e</a>
            </div>
            <div class="node">
                <h1>Documentation</h1>
                <a href="http://swish-e.org/current/docs">Docs</a>
            </div>
        </div>

        <div class="rightcolumn">
            <div class="node">
                <h1>Interesting Stories</h1>
                Some content here
            </div>
            <div class="node">
                <h1>Other News</h1>
                Some news contnet here
            </div>
        </div>

        <div class="centercolumn">
            [% content %]
        </div>
    </div>

    <div class="footer">
        [% PROCESS common_footer %]
    <div>
</div>

</body>
</html>