summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-05-22 18:23:22 -0400
committersiddharth <s@ricketyspace.net>2022-05-22 18:23:22 -0400
commit295d435a92544347e7718cab0302e0930b812977 (patch)
tree18584024fb47e0c5cb356943bbb0d2120c506d3a /templates
parent6f7883f96cd80da47f38c00b3470e0e00adae4a5 (diff)
html -> templates
Diffstat (limited to 'templates')
-rw-r--r--templates/weather.tmpl42
1 files changed, 42 insertions, 0 deletions
diff --git a/templates/weather.tmpl b/templates/weather.tmpl
new file mode 100644
index 0000000..520c284
--- /dev/null
+++ b/templates/weather.tmpl
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>peach</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta name="author" content="siddharth">
+ <link rel="preload" href="/static/peach.css" as="style" />
+ <style>@import url("/static/peach.css");</style>
+</head>
+<body>
+ <div class="peach-container">
+ <div class="location block">
+ <p>{{.Location}}</p>
+ </div>
+
+ <div class="summary">
+ <div class="now">
+ <p class="forecast">{{.Now.Forecast}}</p>
+ <p class="tempature">{{.Now.Temperature}}{{.Now.TemperatureUnit}}</p>
+ <p class="wind">{{.Now.WindSpeed}} {{.Now.WindDirection}}</p>
+ </div>
+ <div class="current-period">
+ <p class="forecast">{{.Period.Forecast}}</p>
+ </div>
+ </div>
+
+ {{ if .Timeline }}
+ <div class="timeline">
+ <div class="container">
+ {{ range .Timeline.Periods }}
+ <div class="period">
+ <p class="temperature">{{.Temperature}}{{.TemperatureUnit}}</p>
+ <p class="hour">{{printf "%d" .Hour}}hrs</p>
+ </div>
+ {{ end }}
+ </div>
+ </div>
+ {{ end }}
+
+ </div>
+</body>