<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cogit - {{$gname}} - {{$rname}} - history</title>
</head>
<body>
<p>Commits:</p>
<ul>
% set i = 0
% while $commit and $i < 20 do
<li><a href="/group/{{$gname}}/repo/{{$rname}}/commit/{{$commit:id()}}">{{$commit:summary()}}</a></li>
% set commit = $commit:parent()
% set i = $i + 1
% end
</ul>
<br/>
% if $prev then
<a href="/group/{{$gname}}/repo/{{$rname}}/history/{{$prev:id()}}"><</a>
% else
<
% end
% if $commit and $commit:parent() then
<a href="/group/{{$gname}}/repo/{{$rname}}/history/{{$commit:parent():id()}}">></a>
% else
>
% end
</body>
</html>