--- /dev/null
+{#
+ 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' %}
+
+<div class="wu-wrapper wu-current-conditions {{ class }}">
+
+ {% include 'alert.html' %}
+
+ {% include 'search-form.html' %}
+
+ <div class="wu-forecast-wrapper">
+
+ {% set day = wunderground.current_observation %}
+
+ <div class="wu-forecast-body">
+
+ <div class="wu-day-title">
+ <span class="wu-day-current-temp">{{ day.temperature|round }}<sup>°</sup></span>
+ <small>{% if wunderground.response.units == 'english' %}F{% else %}C{% endif %}</small>
+ </div>
+
+ {% include 'snippets/icon.html' with { 'tag' : 'div', 'iconsize' : '100' } %}
+
+ {% include 'snippets/condition.html' with { 'tag' : 'div' } %}
+
+ </div>
+
+ </div>
+
+ {% include 'copyright.html' %}
+
+</div>
+
+{% endautoescape %}
--- /dev/null
+{#
+ This template is processed using the Twig template engine
+ Learn more at: http://twig.sensiolabs.org/doc/templates.html
+#}
+
+{# the .ui-front class tells jQuery UI to append search results here. #}
+
+{% if showdata.search is not empty %}
+<form class="wu-search ui-front">
+ <label>
+ {{ location_title }} Test
+ </label>
+</form>
+{% endif %}