This file is indexed.

/usr/share/doc/python-werkzeug-doc/examples/plnt/templates/about.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
14
15
16
17
18
19
{% extends "layout.html" %}
{% block body %}
  <div class="page">
    <h2>About Plnt</h2>
    <p>
      Plnt is a small example application written using the
      <a href="http://werkzeug.pocoo.org/">Werkzeug</a> WSGI toolkit,
      the <a href="http://jinja.pocoo.org/">Jinja</a> template language,
      the <a href="http://sqlalchemy.org/">SQLAlchemy</a> database abstraction
      layer and ORM and last but not least the awesome
      <a href="http://feedparser.org/">feedparser</a> library.
    </p>
    <p>
      It's one of the example applications developed to show some of the
      features werkzeug provides and could be the base of a real planet
      software.
    </p>
  </div>
{% endblock %}