]> Stephen's Gitweb - reasonableweather.git/commitdiff
Implement rudimentary theme support
authorStephen Jianu <stephen@stephenjianu.com>
Sun, 30 Mar 2025 20:24:28 +0000 (15:24 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Sun, 30 Mar 2025 20:24:28 +0000 (15:24 -0500)
For the time being, themes must be defined by specifying the name in the
"theme" URL parameter. If no path to a subdirectory under the "themes"
directory is defined, the script will assume the user meant to choose a
theme in "themes/base16-styles/css". The default theme is
"base16-default-dark".

.gitmodules
Dockerfile
README.md
index.php
themes/base16-styles [new submodule]

index ea9d4d5fff4968f7542c05f6fe8f3704fcac65bf..92729faf24d111d29a2efba393320f498c57e54c 100644 (file)
@@ -1,3 +1,6 @@
 [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
index d5b5bbbe2b06d51eded9cdec071d2da080fac4c3..fcf7d2221514160df6e897456d7ca3a6a5d7c3a7 100644 (file)
@@ -4,3 +4,4 @@ COPY ./.htaccess /var/www/html
 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
index 78cc4efb6ce80f1f9fb1be9ce49103f6eceada67..2d5f1afa0ef727ccb3282a510eaa14df7be9e070 100644 (file)
--- a/README.md
+++ b/README.md
@@ -17,3 +17,4 @@ docker run -d -p 6969:80 --restart=unless-stopped --name reasonableweather regis
 * [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)
index 97cd3040db940bceaaf5ab36372da172be3ddab1..ba155d4e3f57406d30fa005e92aaeae576ffd553 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,11 +1,16 @@
 <?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&current=temperature_2m,weather_code,is_day,&timezone=America%2FChicago&wind_speed_unit=mph&temperature_unit=fahrenheit&precipitation_unit=inch";
@@ -42,9 +47,9 @@
                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";
 ?>
diff --git a/themes/base16-styles b/themes/base16-styles
new file mode 160000 (submodule)
index 0000000..8db4f00
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 8db4f00ca9e5575ba52d98a204ee44a53e13d546