This file is indexed.

/usr/share/php/data/ApiGen/theme-bootstrap/package.latte is in php-apigen-theme-bootstrap 1.1.3+dfsg-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
{layout '@layout.latte'}
{var $active = 'package'}

{block title}{if $package != 'None'}Package {$package}{else}No package{/if}{/block}

{block content}
<div id="content" class="package">
	<h1>{if $package != 'None'}Package {$package|packageLinks:false|noescape}{else}No package{/if}</h1>

	{if $subpackages}
	<div class="panel panel-default">
        <div class="panel-heading"><h2>Packages summary</h2></div>
		<table class="summary table table-bordered table-striped" id="packages">
		<tr n:foreach="$subpackages as $package">
			<td class="name"><a href="{$package|packageUrl}">{$package}</a></td>
		</tr>
		</table>
	</div>
	{/if}

	{include '@elementlist.latte'}
</div>
{/block}