Template for conditions page #92

This commit is contained in:
Ian Renton
2026-03-28 12:01:01 +00:00
parent 8127122c11
commit a55179d944
10 changed files with 50 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
// Load solar conditions
function loadSolarConditions() {
$.getJSON('/api/v1/solar', function(jsonData) {
});
}
// Startup
$(document).ready(function() {
loadSolarConditions();
});