summaryrefslogtreecommitdiffstats
path: root/html/weather.html
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 /html/weather.html
parent6f7883f96cd80da47f38c00b3470e0e00adae4a5 (diff)
html -> templates
Diffstat (limited to 'html/weather.html')
-rw-r--r--html/weather.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/html/weather.html b/html/weather.html
deleted file mode 100644
index 520c284..0000000
--- a/html/weather.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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>