summaryrefslogtreecommitdiffstats
path: root/templates/about.tmpl
blob: 79a633d51af891c1654c3da1519158b01f83ae1f (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
	<head>
		{{ template "head.tmpl" . }}
	</head>
	<body>
		<div class="peach">
			<div class="root-container">
				<div class="about-container">
					<div class="header">
						<h1>peach</h1>
						<p>v{{ .Version }}</p>
					</div>
					<div class="content">
						<p>Peach's a barebones weather service.</p>

						<p>
							Forecast data and weather alerts are from
							<a href="//weather.gov">weather.gov</a>.
						</p>
					</div>
				</div> <!-- about-container end -->

				<div class="terms-container">
					<div class="header">
						<h2>terms</h2>
					</div>
					<div class="content">
						<p>
							Peach's available for anybody to use.
						</p>

						<p>
							It is licensed under the
							<a href="//git.ricketyspace.net/peach/tree/LICENSE">ISC license</a>. Your
							use of this service indicates an implicit
							agreement to the terms of this license.</p>

						<p>
							Peach's source code can be found at
							<a href="//ricketyspace.net/peach">
								ricketyspace.net/peach
							</a>.
						</p>
					</div>
				</div> <!-- terms-container end -->

				<div class="privacy-container">
					<div class="header">
						<h2>privacy</h2>
					</div>
					<div class="content">
						<p>Peach does not use cookies. It does not
						track your location and it's indifferent about
						what you use to access it. It wants to know
						nothing about you.</p>
					</div>
				</div> <!-- privacy-container end -->

				<div class="footer-container">
					<div class="footer">
						<div class="logo-container">
							<a href="/">
								<img src="/static/logo/peach.png" alt="[ peach logo]" />
							</a>
						</div>
					</div>
				</div> <!-- footer container end -->

			</div> <!-- root-container end -->
		</div> <!-- peach end -->
	</body>
</html>