This file is indexed.

/usr/share/pyshared/IPython/frontend/html/notebook/templates/logout.html is in ipython-notebook 0.12.1+dfsg-0ubuntu1.

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
{% extends layout.html %}

{% block content_panel %}
  <ul>
    {% if read_only or not login_available %}

    Proceed to the <a href="/">list of notebooks</a>.</li>

    {% else %}

    Proceed to the <a href="/login">login page</a>.</li>

    {% end %}

  </ul>

{% end %}

{% block login_widget %}
{% end %}

{% block script %}
<script type="text/javascript">
  $(document).ready(function() {
    IPython.login_widget = new IPython.LoginWidget('span#login_widget');
  });
</script>
{% end %}