This file is indexed.

/usr/share/php/data/ApiGen/theme-default/package.latte is in php-apigen-theme-default 1.0.2+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
{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>

	<table class="summary" id="packages" n:if="$subpackages">
	<caption>Packages summary</caption>
	<tr n:foreach="$subpackages as $package">
		<td class="name"><a href="{$package|packageUrl}">{$package}</a></td>
	</tr>
	</table>

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