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/user/header.html (19 lines, 379 B) -rw-r--r-- blame download

0123456789101112131415161718
{{define "user/header"}}
<table>
	<tr>
		<td rowspan="2">
			<a href="/"><img src="/static/favicon.png" style="max-height: 24px;"></a>
		</td>
		<td><h1>{{.Title}}</h1></td>
	</tr>
	<tr>
		<td>
			<a href="/user/sessions">Sessions</a>
			| <a href="/user/edit">Edit</a>
			| <a href="/user/keys">Keys</a>
			| <a href="/user/keys/add">Add Key</a>
		</td>
	</tr>
</table>
{{end}}