<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="${g.pyforge_templates}/master.html"/>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
<title py:if="not repo">Git Repository</title>
<title py:if="repo">Git Repository: ${repo.name}</title>
</head>
<body>
<h1 class="title">Welcome to ForgeGit</h1>
<h2>Project: $c.project.shortname</h2>
<py:if test="repo">
<dl>
<dt>repo</dt>
<dd>git://git.${host}${repo.url_path}${repo.name}</dd>
<dt>status</dt>
<dd>${repo.status}</dd>
</dl>
<form py:if="allow_fork" action="fork" method="GET">
<input type="submit" value="Fork" class="ui-state-default ui-button ui-button-text"/>
</form>
</py:if>
<h2>Recent Commits</h2>
<h3 py:if="branch">Browsing $branch</h3>
<py:for each="r in revisions">
${c.revision_widget.display(value=r)}
</py:for>
<a py:if="next_link" href="$next_link">More</a>
</body>
</html>