mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-04-17 13:15:51 +00:00
23 lines
336 B
HTML
23 lines
336 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GitHop</title>
|
|
<link rel="stylesheet" href="/static/main.css">
|
|
</head>
|
|
<body>
|
|
<h1>GitHop!</h1>
|
|
|
|
Events:
|
|
<ul>
|
|
{{range .}}
|
|
<li>
|
|
{{.ID}}
|
|
<pre>
|
|
{{printf "%s" .RawPayload}}
|
|
</pre>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
</body>
|
|
</html>
|