-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforecast.html.tmpl
52 lines (42 loc) · 1.32 KB
/
forecast.html.tmpl
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
#errorCatcher Echo
## $Id: forecast.html.tmpl,v 1.4 2015/01/27 21:38:08 root Exp $
##
#set global $pageTitle = "Current Weather Forecast"
#include "include/preamble.inc"
<body>
<div id="container">
#include "include/masthead.inc"
<div id="stats_group">
#include "include/current.inc"
<p> </p>
#set global $period1 = $yesterday
#set global $period2 = $day
#set global $period1Name = "Yesterday"
#set global $period2Name = "Today"
#include "include/chart.inc"
#if $Extras.has_key('radar_img')
<div id="radar_img">
#if $Extras.has_key('radar_url')
<a href="$Extras.radar_url">
#end if
<img src="$Extras.radar_img" alt="Radar" />
#if $Extras.has_key('radar_url')
</a>
<p>Click image for expanded radar loop</p>
#end if
</div>
#end if
#include "include/buttonbar.inc"
</div> <!--End class "stats_group" -->
<div id="content">
<div id="forecast">
#if $varExists('forecast')
#include "include/forecast_table.inc"
#else
Forecast search_list_extensions is not configured for this page
#end if
</div>
</div>
#include "include/analytics.inc"
</body>
</html>