-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcode.html
More file actions
76 lines (53 loc) · 1.95 KB
/
code.html
File metadata and controls
76 lines (53 loc) · 1.95 KB
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
74
75
76
<!DOCTYPE html>
<html lang='en'>
<head>
<title>WeeWX: Code</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="initial-scale=1"/>
<link href="favicon.ico" rel="icon" type="image/x-icon"/>
<link href="css/weewx.css" rel="stylesheet" type="text/css"/>
<script src='js/showcase.js' type="text/javascript"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D146BWZK54"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D146BWZK54');
</script>
<body onload="populate_header('code'); populate_screenshots(2,1);">
<!-- Begin Container -->
<div id="container">
<div id="masthead">
<h1><a href='.'>WeeWX</a></h1>
<p>Open source software for your weather station</p>
</div>
<div id="navigation"></div>
<div id='screenshots'></div>
<!-- Begin Content -->
<div id="content">
<h2>Code</h2>
<p>The latest and previous releases are available at weewx.com:</p>
<p class='url'><a href='downloads'>http://weewx.com/downloads</a></p>
<p>GPG keys for verifying releases:</p>
<p class='url'><a href="keys.html">http://weewx.com/keys.html</a></p>
<p>The change log enumerates the differences in each release:</p>
<p class='url'><a href="https://github.com/weewx/weewx/blob/master/docs/changes.txt">https://github.com/weewx/weewx/blob/master/docs/changes.txt</a>
</p>
<p> </p>
<p>The code is in a repository at GitHub:</p>
<p class='url'><a href="https://github.com/weewx/weewx">https://github.com/weewx/weewx</a></p>
</div>
<!-- End Content -->
<div style='clear:both'> </div>
<div id="footer">
<p>
Copyright © Tom Keffer, Matthew Wall, and Gary Roderick,
all rights reserved
</p>
</div>
</div>
<!-- End Container -->
</body>
</html>