Parent Directory
|
Revision Log
|
Revision Graph
Use template engine for block output to make theming easier. Closes: #206629, #282711
| 1 | <div class="weather"> |
| 2 | <p> |
| 3 | <strong><?php print $weather['real_name']; ?>:</strong> |
| 4 | <?php print $weather['condition']; |
| 5 | if (isset($weather['temperature'])) { |
| 6 | print ', ' . $weather['temperature']; |
| 7 | } |
| 8 | ?> |
| 9 | </p> |
| 10 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |