aboutsummaryrefslogtreecommitdiffstats
path: root/roles/httpd_site_healthcheck/templates/index.html.j2
blob: c52ff413ba4dccc549b81e54c8b052581bd299d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<meta charset="utf-8">
<title>{{ inventory_hostname }} - healtcheck</title>
<style>
body {
	background-color: white;
	color: black;
	font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
}

hr {
	border: 0;
	border-bottom: 1px dashed;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #1E1F21;
		color: #EEEFF1;
	}

	a {
		color: #BAD7FF;
	}
}
</style>
</head>
<body>
<h1>{{ inventory_hostname }} - healtcheck</h1>
<hr>
<blockquote>Thank you for using {{ inventory_hostname }}.</blockquote>
</body>
</html>
remember that computers suck.