- or download this
$tmpl = HTML::Template->new('filename' => $TEMPLATE);
$tmpl->param('Temperature' => $current->{'Temperature'});
...
$tmpl->param('WindSpeed' => $current->{'WindSpeed'});
...
print $tmpl->output();
- or download this
<TABLE>
<TR>
...
</TD>
</TR>
</TABLE>
- or download this
<H3>Current weather</H3>
[insert HTML here using a selection of the variables below]
...
--><!--TMPL_VAR NAME="Visibility"--><!--TMPL_VAR NAME="Icon"--><!--TMP
+L_VAR NAME="IconDescription"-->-->
...