<? require "templates/parts/header.php" ?>
<? require "templates/parts/commitheader.php" ?>
<? require "templates/parts/breadcrumb.php" ?>
<? require_once "html.php" ?>
<div id="blob" class="box">
<div class="header">
<ul class="actions">
<li><a href="<? htmlText($FILE->getRawUrl()) ?>">Raw</a></li>
<? if ($REPO) { ?>
<li><a href="<? htmlText($FILE->getBlameUrl()) ?>">Blame</a></li>
<li><a href="<? htmlText($FILE->getHistoryUrl()) ?>">History</a></li>
<? } ?>
</ul>
<ul class="info">
<li><? htmlFileMode($FILE->getMode()) ?></li>
<li><? htmlFileSize($FILE->getSize()) ?></li>
</ul>
</div>
<div class="body">
<table>
<tr>
<td class="line-numbers"></td>
<td class="text-file">
<pre class="text-file">
<? $totalLines = $FILE->dump() ?>
</pre>
</td>
</tr>
<tr class="hide">
<td class="line-numbers"><? htmlText($totalLines) ?></td>
<td></td>
</tr>
</table>
<table class="line-numbers">
<tr>
<td class="line-numbers">
<? for ($i = 1; $i <= $totalLines; $i++) { ?>
<a href="#L<?=$i?>"><?=$i?></a><br />
<? } ?>
</td>
</tr>
</table>
</div>
</div>
<? require "templates/parts/footer.php" ?>