Rename to gitssg
This commit is contained in:
parent
8be57baa83
commit
873ae748dc
7 changed files with 192 additions and 10 deletions
|
@ -1,13 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Repositories</title>
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h3>Repositories</h3>
|
||||
{{- range .repoDirs}}
|
||||
<p>{{ .Name }} :: {{.Owner}} :: {{.Description}} :: {{.LastCommit}}</p>
|
||||
{{- end}}
|
||||
<table>
|
||||
<tr><td><img src="logo.png" alt="" width="32" height="32" /></td>
|
||||
<td><span class="desc">Repositories</span></td></tr><tr><td></td><td>
|
||||
</td></tr>
|
||||
</table>
|
||||
<hr/>
|
||||
<div id="content">
|
||||
<table id="index"><thead>
|
||||
<tr>
|
||||
<td><b>Name</b></td>
|
||||
<td><b>Description</b></td>
|
||||
<td><b>Owner</b></td>
|
||||
<td><b>Last commit</b></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{- range .repoDirs}}
|
||||
<tr>
|
||||
<td><a href="{{.Name}}/log.html">{{.Name}}</a></td>
|
||||
<td>{{.Description}}</td>
|
||||
<td>{{.Owner}}</td>
|
||||
<td>{{.LastCommit}}</td>
|
||||
</tr>
|
||||
{{- end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue