This file is indexed.

/usr/share/swish-e/templates/page_layout is in swish-e 2.4.7-4build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<!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>