From 49793333ff5f0175932fbca0e9a37fb6e34dad09 Mon Sep 17 00:00:00 2001
From: siddharth ravikumar <s@ricketyspace.net>
Date: Sun, 7 Aug 2022 15:16:01 -0400
Subject: templates: update weather.tmpl

Add humidity.
---
 templates/weather.tmpl | 29 +++++++++++++++++++++--------
 1 file changed, 21 insertions(+), 8 deletions(-)

(limited to 'templates')

diff --git a/templates/weather.tmpl b/templates/weather.tmpl
index e8eb99f..9ba41a0 100644
--- a/templates/weather.tmpl
+++ b/templates/weather.tmpl
@@ -26,14 +26,27 @@
 								</div>
 							</div> <!-- temperature-forecast-container -->
 
-							<div class="wind-container">
-								<div class="prop">
-									Wind
-								</div>
-								<div class="value">
-									{{.Now.WindSpeed}} {{.Now.WindDirection}}
-								</div>
-							</div> <!-- wind-container end -->
+							<div class="misc-container">
+								<div class="wind-container">
+									<div class="prop">
+										Wind
+									</div>
+									<div class="value">
+										{{.Now.WindSpeed}} {{.Now.WindDirection}}
+									</div>
+								</div> <!-- wind-container end -->
+
+								<div class="humidity-container">
+									<div class="prop">
+										Humidity
+									</div>
+									<div class="value">
+										{{.Now.Humidity}}&#37;
+									</div>
+								</div> <!-- humidity-container end -->
+
+							</div> <!-- misc-container end -->
+
 						</div> <!-- now-container end -->
 
 					</div> <!-- period-container end -->
-- 
cgit v1.2.3