This file is indexed.

/usr/lib/python3/dist-packages/klaus/templates/skeleton.html is in python3-klaus 1.2.1-3.

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
29
<!doctype html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel=stylesheet href={{ url_for('static', filename='pygments.css') }}>
<link rel=stylesheet href={{ url_for('static', filename='klaus.css') }}>
<link rel=icon type="image/png" href="{{ url_for('static', filename='favicon.png') }}" />
{% if base_href %}
<base href="{{ base_href }}"/>
{% endif %}
<title>{% block title %}{% endblock %} - {{ SITE_NAME }}</title>

<script src={{ url_for('static', filename='klaus.js') }}></script>

<header>
  <a href={{ url_for('repo_list') }}>
    {{ SITE_NAME }}
  </a>
  <span class=breadcrumbs>{% block breadcrumbs %}{% endblock %}</span>
  {% block extra_header %}{% endblock %}
</header>

<div id=content>
{% block content %}{% endblock %}
</div>

<footer>
  powered by <a href="https://github.com/jonashaag/klaus">klaus</a> {{ KLAUS_VERSION }},
  a simple Git viewer by Jonas Haag
</footer>