mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-04-01 10:35:54 +00:00
28 lines
467 B
HTML
28 lines
467 B
HTML
{{define "index"}}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GitHop</title>
|
|
<link rel="stylesheet" href="/static/main.css">
|
|
<link rel="stylesheet" href="/static/digest.css">
|
|
</head>
|
|
<body>
|
|
<h1>GitHop!</h1>
|
|
|
|
<p>
|
|
<a href="{{.SignOutUrl}}">
|
|
Sign Out
|
|
</a>
|
|
</p>
|
|
|
|
<form method="POST" action="{{.SendDigestUrl}}">
|
|
<input type="submit" value="Email Digest">
|
|
</form>
|
|
|
|
{{template "digest" .Digest}}
|
|
</body>
|
|
</html>
|
|
|
|
{{end}}
|