This file is indexed.

/usr/share/paster_templates/pylons/default_project/+package+/public/index.html_tmpl is in python-pylons 1.0.1-3.

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
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?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>Welcome to Pylons!</title>
        <style type="text/css">
            body {
                font-family: arial, helvetica, sans-serif;
                background-color: #ffc900;
                background-image: url(bg.png);
                background-repeat: repeat-x;
                width:100%;
                height:100%;
                margin:0;
                max-height: 100%;
                padding:0;
                border:none;
                line-height:1.4;
            }
            #container {
                color:white;
                background-color:#111;
                position: absolute;
                left: 50%;
                width: 500px;
                margin-left: -300px;
                padding:50px;
                height:100%;
            }
            #footer {
                margin: 120px 0 0 0;
                padding: 3px;
                text-align:center;
                font-size:small;
                background-color:#222;
                letter-spacing: 1px;
            }
            h1 {
                text-align:center;
                font-size:xx-large;
                font-weight:normal;
                margin: 0 0 20px 0;
                border:none;
                padding:0;
                letter-spacing: 5px;
            }
            h2 {
                font-size:xx-large;
                font-weight:normal;
                margin: 0 0 20px 0;
                border:none;
                padding:0;
            }
            hr {
                margin-bottom:30px;
                border: 1px solid #222;
                background-color: #222;
                padding: 2px;
            }
            #logo {
                background-image: url(signum8b_spk.png);
                background-repeat: no-repeat;
                height: 0;
                overflow: hidden;
                padding-top: 99px;
                width: 239px;
            }
            #left {
                float:left;
                width:250px;
                margin:0 50px 0 0;
                border:none;
                padding:0 0 0 10px;
            }
            #right {
                margin:0 0 0 330px;
                border:none;
                padding:0;
            }
            ul {
                list-style:none;
                margin:0;
                border:none;
                padding:0;
            }
            a:visited {
                color:white;
                text-decoration:none;
            }
            a:link {
                color:white;
                text-decoration:none;
            }</style>
    </head>
    <body>
        <div id="container">
            <h1>Welcome to <img src="pylons-logo.gif" alt="Logo displaying the word Pylons"
                    style="vertical-align:-15px; width: 250px;"/>
            </h1>
            <hr/>
            <div id="left">
                <h2>Let's begin!</h2>
                <p>If you haven't used Pylons before, start with the <a href="http://pylonshq.com/docs/en/1.0/gettingstarted/"
                        style="text-decoration:underline;">beginners' tutorial</a>.</p>
            </div>
            <div id="right">
                <h2>Help</h2>
                <ul>
                    <li>
                        <a href="http://pylonshq.com/docs/en/1.0/">Official documentation</a>
                    </li>
                    <li>
                        <a href="http://wiki.pylonshq.com/display/pylonsfaq/Home">FAQ</a>
                    </li>
                    <li>
                        <a href="http://wiki.pylonshq.com/dashboard.action">Wiki</a>
                    </li>
                    <li>
                        <a href="http://wiki.pylonshq.com/display/pylonscommunity/Home#Home-JointheMailingLists">Mailing list</a>
                    </li>
                    <li>
                        <a href="http://wiki.pylonshq.com/display/pylonscommunity/Home#Home-IRC">IRC</a>
                    </li>
                    <li>
                        <a href="http://pylonshq.com/project/pylonshq/roadmap">Bug tracker</a>
                    </li>
                </ul>
            </div>
            <div id="footer">
                <a href="http://www.pylonshq.com" style="color: #ccc; text-decoration:none;"
                    >www.pylonshq.com</a>
            </div>
        </div>
    </body>
</html>