first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
/**
* Weather template
*/
$settings = $this->get_settings_for_display();
?>
<div class="jet-weather">
<div class="jet-weather__container"><?php
echo $this->get_weather_title();
if ( isset( $settings['show_current_weather'] ) && 'true' === $settings['show_current_weather'] ) {
include $this->__get_global_template( 'current' );
}
if ( isset( $settings['show_forecast_weather'] ) && 'true' === $settings['show_forecast_weather'] ) {
include $this->__get_global_template( 'forecast' );
}
?></div>
</div>