This file is indexed.

/usr/lib/python2.7/dist-packages/horizon/templates/splash.html is in python-django-horizon 1:2014.1.5-0ubuntu2.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
{% load i18n branding %}

<!DOCTYPE html>
<html lang="en" xml:lang="en">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    {% include "horizon/_custom_meta.html" %}
    <title>{% trans "Login" %} - {% site_branding %}</title>
    {% include "_stylesheets.html" %}
    {% include "horizon/_custom_head_js.html" %}
  </head>
  <body id="splash">
    <div class="container">
      <div class="row large-rounded">
        {% include 'auth/_login.html' %}
      </div>
    </div>
  </body>
</html>