Goit

Simple and lightweight Git web server
git clone http://git.omkov.net/Goit
Log | Tree | Refs | README | Download

Goit/res/error.html (14 lines, 354 B) -rw-r--r-- file download

8abd343 Jakob Wakeling 2023-07-19 00:40:45
0
<!DOCTYPE html>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
1
<html lang="en">
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
2
	<head>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
3
		<meta charset="UTF-8">
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
4
		<title>{{.Status}}</title>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
5
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
6
		<link rel="stylesheet" type="text/css" href="/static/style.css">
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
7
		<link rel="icon" type="image/png" href="/static/favicon.png">
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
8
	</head>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
9
	<body>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
10
		<b>{{.Status}}</b>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
11
	</body>
71b7f19 Jakob Wakeling 2024-01-08 22:23:49
12
</html>
13