This file is indexed.

/usr/share/php/data/ApiGen/theme-bootstrap/overview.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{layout '@layout.latte'}
{var $active = 'overview'}

{block title}{$config->title ?: 'Overview'}{/block}

{block content}
<div id="content">
	<h1>{include title}</h1>

	{var $group = false}

	{if count($namespaces)}
		<div class="panel panel-default">
            <div class="panel-heading"><h2>Namespaces summary</h2></div>
			<table class="summary table table-bordered table-striped" id="namespaces">
				{foreach $namespaces as $namespace}
					{continueIf $config->main && 0 !== strpos($namespace, $config->main)}
					<tr>
						{var $group = true}
						<td class="name"><a href="{$namespace|namespaceUrl}">{$namespace}</a></td>
					</tr>
				{/foreach}
			</table>
		</div>
	{/if}

	{if count($packages)}
		<div class="panel panel-default">
            <div class="panel-heading"><h2>Packages summary</h2></div>
			<table class="summary table table-bordered table-striped" id="packages">
				{foreach $packages as $package}
					{continueIf $config->main && 0 !== strpos($package, $config->main)}
					<tr>
						{var $group = true}
						<td class="name">
							<a href="{$package|packageUrl}">{$package}</a>
						</td>
					</tr>
				{/foreach}
			</table>
		</div>
	{/if}

	{if ! $group}
		{include '@elementlist.latte'}
	{/if}
</div>
{/block}