work on weather services; outbound http request caching; styles updates and icons

This commit is contained in:
2023-08-12 19:19:20 -07:00
parent 7c205632cb
commit 85d72b43d2
55 changed files with 2593 additions and 234 deletions

View File

@@ -0,0 +1,21 @@
<section data-widget="weatherapi-com-current" title="Current Weather for {{ location.name }}">
<link rel="stylesheet" href="/weatherapi.com/styles.css">
<p class="condition">
<span>{{ weather.current.condition.text }}</span>
</p>
<p class="temp">
{{{ icons.thermometer }}}
<span>{{ weather.current.temp_f }}<sup>F</sup> / {{ weather.current.temp_c }}<sup>C</sup></span>
</p>
<p class="wind">
{{{ icons.wind }}}
<span>{{ weather.current.wind_mph }} mph / {{ weather.current.wind_kph }} km/h / {{ weather.current.wind_dir }}</span>
</p>
<p class="powered-by">
Powered by <a href="https://www.weatherapi.com/docs/" rel="external nofollow noreferrer">WeatherAPI.com</a>
</p>
</section>