This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_journal_tertiary_nav.pt is in python-schooltool.lyceum.journal 2.6.4-0ubuntu2.

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
<tal:block define="items view/items"
           tal:condition="items">
  <a href="#" id="navbar-go-previous"
     class="navbar-arrow navbar-go-previous">
    &#x25C0;
  </a>
  <div class="third-nav-container" id="third-nav-container">
    <ul tal:attributes="class view/list_class">
      <li tal:repeat="item items"
          tal:attributes="class item/class"
          tal:content="structure item/viewlet">
      </li>
    </ul>
  </div>
  <a href="#" id="navbar-go-next"
     class="navbar-arrow navbar-go-next">
    &#x25B6;
  </a>
  <a href="#" id="navbar-list-worksheets"
     class="navbar-arrow navbar-list-worksheets">
    &#x25BC;
  </a>
</tal:block>