mirror of
https://github.com/weewx/weewx.git
synced 2026-04-21 10:07:05 -04:00
42 lines
1.4 KiB
Cheetah
42 lines
1.4 KiB
Cheetah
#encoding UTF-8
|
|
<!DOCTYPE html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Outside temperature in $station.location</title>
|
|
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
|
|
<script src="https://code.jquery.com/jquery-1.7.1.min.js"></script>
|
|
<script type="text/javascript" src="https://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<div data-role="page" data-add-back-btn="true" data-theme="a">
|
|
<div data-role="header">
|
|
<h1>Outside temperature</h1>
|
|
</div>
|
|
<div data-role="content">
|
|
<h4>24h temperature</h4>
|
|
<img src="daytempdew.png"/>
|
|
<p>
|
|
min: $day.outTemp.min at $day.outTemp.mintime<br/>
|
|
max: $day.outTemp.max at $day.outTemp.maxtime
|
|
</p>
|
|
<h4>7-day temperature</h4>
|
|
<img src="weektempdew.png"/>
|
|
<p>
|
|
min: $week.outTemp.min at $week.outTemp.mintime<br/>
|
|
max: $week.outTemp.max at $week.outTemp.maxtime
|
|
</p>
|
|
<h4>30-day temperature</h4>
|
|
<img src="monthtempdew.png"/>
|
|
<p>
|
|
min: $month.outTemp.min at $month.outTemp.mintime<br/>
|
|
max: $month.outTemp.max at $month.outTemp.maxtime
|
|
</p>
|
|
</div>
|
|
<div data-role="footer">
|
|
<h4>weewx v$station.version</h4>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|