[submodule "weather-icons"]
path = weather-icons
url = https://github.com/erikflowers/weather-icons
+[submodule "themes/base16-styles"]
+ path = themes/base16-styles
+ url = https://github.com/samme/base16-styles
COPY ./descriptions.json /var/www/html
COPY ./index.php /var/www/html
COPY ./weather-icons /var/www/html/weather-icons
+COPY ./themes /var/www/html/themes
* [Open-Meteo API](https://open-meteo.com/)
* [JSON mapping of weather codes by GitHub user stellasphere](https://gist.github.com/stellasphere/9490c195ed2b53c707087c8c2db4ec0c)
* [Weather Icons by Erik Flowers](https://github.com/erikflowers/weather-icons/)
+* [base16-styles CSS themes](https://github.com/samme/base16-styles)
<?php
+ $theme = isset($_GET["theme"]) ? $_GET["theme"] : "base16-default-dark";
echo "<html>\n";
echo "<head>\n";
- echo "<link rel=\"stylesheet\" href=\"weather-icons/css/weather-icons.min.css\">";
+ echo "<link rel=\"stylesheet\" href=\"weather-icons/css/weather-icons.min.css\">";
+ if (str_contains($theme, '/'))
+ echo "<link rel=\"stylesheet\" href=\"themes/".$theme.".css\">";
+ else
+ echo "<link rel=\"stylesheet\" href=\"themes/base16-styles/css/".$theme.".css\">";
echo "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n";
echo "<title>Weather in Park Ridge</title>\n";
echo "</head>\n";
- echo "<body style=\"text-align: center; font-family: sans-serif;\">\n";
+ echo "<body class=\"base00-bg base05\" style=\"text-align: center; font-family: sans-serif;\">\n";
echo "<h3>The current conditions in Park Ridge are:</h3>\n";
echo "<h1>\n";
$url = "https://api.open-meteo.com/v1/forecast?latitude=42.0111&longitude=-87.8406&daily=temperature_2m_max,temperature_2m_min,weather_code,wind_speed_10m_max,precipitation_probability_max,precipitation_sum¤t=temperature_2m,weather_code,is_day,&timezone=America%2FChicago&wind_speed_unit=mph&temperature_unit=fahrenheit&precipitation_unit=inch";
echo "</div>\n";
}
echo "<br><br>\n";
- echo "<a href=\"https://open-meteo.com/\">Weather data by Open-Meteo.com</a>\n";
+ echo "<a class=\"base09\" href=\"https://open-meteo.com/\">Weather data by Open-Meteo.com</a>\n";
echo "<br>\n";
- echo "<a href=\"https://github.com/erikflowers/weather-icons/\">Icons by Erik Flowers</a>\n";
+ echo "<a class=\"base09\" href=\"https://github.com/erikflowers/weather-icons/\">Icons by Erik Flowers</a>\n";
echo "</body>\n";
echo "</html>\n";
?>