This file is indexed.

/usr/share/knotes/print/themes/default/theme.html is in knotes 4:17.12.3-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
<html>

{% if notes %}
{% for note in notes %}
<h2>{{ note.name }}</h2>
<br>
<p>{{ note.description|safe }}</p>
<br>
{% if note.hasAlarm %}
<p>{{ alarm_i18n }} {{ note.alarm }}</p>
{% endif %}
<br>
{% endfor %}
{% endif %}

</html>