This file is indexed.

/usr/share/doc/python-werkzeug-doc/examples/coolmagic/templates/layout.html is in python-werkzeug-doc 0.10.4+dfsg1-1ubuntu1.1.

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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
    <title>{{ page_title }} &mdash; Cool Magic!</title>
    <link rel="stylesheet" href="{{ h.url_for('shared_data', file='style.css') }}" type="text/css">
  </head>
  <body>
    <h1>Cool Magic</h1>
    <h2>{{ page_title }}</h2>
    {% block page_body %}{% endblock %}
  </body>
</html>