{# This template is processed using the Twig template engine Learn more at: http://twig.sensiolabs.org/doc/templates.html You can override this output by copying this file into your theme's directory, in a subfolder named "wunderground". The path to the file would look like this: /wp-content/themes/my-theme/wunderground/simple.html #} {# Escape the HTML in the passed data automatically #} {% autoescape 'html' %}
{% include 'alert.html' %} {% include 'search-form.html' %}
{% set day = wunderground.current_observation %}
{{ day.temperature|round }}° {% if wunderground.response.units == 'english' %}F{% else %}C{% endif %}
{% include 'snippets/icon.html' with { 'tag' : 'div', 'iconsize' : '100' } %} {% include 'snippets/condition.html' with { 'tag' : 'div' } %}
{% include 'copyright.html' %}
{% endautoescape %}