<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cogit - {{$gname}} - {{$rname}} - history</title>
</head>
<body>
<a href="/">home</a>
>
<a href="/group/{{$gname}}">{{$gname}}</a>
>
<a href="/group/{{$gname}}/repo/{{$rname}}">{{$rname}}</a>
>
history
<p>Commits:</p>
<ul>
% set i = 0
% while $commit and $i < $limit 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 then
<a href="/group/{{$gname}}/repo/{{$rname}}/history/{{$commit:id()}}">></a>
% else
>
% end
</body>
</html>