Goit

Simple and lightweight Git web server
git clone https://git.omkov.net/Goit
git clone [email protected]:Goit
Log | Tree | Refs | README | Download

Goit/res/repo/tag.html (20 lines, 614 B) -rw-r--r-- blame download

012345678910111213141516171819
<!DOCTYPE html>
<html lang="en">
	<head>{{template "base/head" .}}</head>
	<body>
		<header>{{template "repo/header" .}}</header><hr>
		<main>
			<table>
				<tr><td>Tag</td><td><a href="/{{.Name}}/tag/{{.Tag}}">{{.Tag}}</a></td></tr>
				<tr><td>Author</td><td>{{.Author}}</td></tr>
				<tr><td>Date</td><td>{{.Date}}</td></tr>
				<tr><td>Commit</td><td><a href="/{{.Name}}/commit/{{.Commit}}">{{.Commit}}</a></td></tr>
				{{range $i, $h := .Parents}}
					<tr><td>Parent</td><td><a href="/{{$.Name}}/commit/{{$h}}">{{$h}}</a></td></tr>
				{{end}}
			</table>
			<p>{{.Message}}</p>
		</main>
	</body>
</html>