diff options
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | templates/weather.tmpl | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -35,6 +35,7 @@ var peachTemplates = template.Must(template.ParseFS(peachFS, "templates/*.tmpl") var latLngRegex = regexp.MustCompile(`/(-?[0-9]+\.?[0-9]+?),(-?[0-9]+\.?[0-9]+)`) type Weather struct { + Title string Location string Now WeatherNow Period WeatherPeriod @@ -137,6 +138,7 @@ func NewWeather(point *nws.NWSPoint, f, fh *nws.NWSForecast) (*Weather, error) { strings.ToLower(point.Properties.RelativeLocation.Properties.City), strings.ToLower(point.Properties.RelativeLocation.Properties.State), ) + w.Title = w.Location w.Now = WeatherNow{ Temperature: fh.Properties.Periods[0].Temperature, TemperatureUnit: fh.Properties.Periods[0].TemperatureUnit, diff --git a/templates/weather.tmpl b/templates/weather.tmpl index 5fac41e..05b18a2 100644 --- a/templates/weather.tmpl +++ b/templates/weather.tmpl @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="UTF-8"> - <title>peach - {{.Location}}</title> + <title>peach - {{.Title}}</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="author" content="siddharth ravikumar"> <link rel="preload" href="/static/peach.css" as="style" /> |