HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/bookcc/public_html/wp-content/plugins/awesome-weather/templates/basic.php
<div id="<?php awe_widget_id( $weather ); ?>" class="<?php echo $background_classes ?>" <?php echo $inline_style; ?>>
	
	<?php if($weather->background_image) { ?>
	<div class="awesome-weather-cover" style="background-image: url(<?php echo $weather->background_image; ?>);">
	<div class="awesome-weather-darken">
	<?php } ?>
	
	<?php if( isset($weather->data['current'])) { ?>

		<?php if($weather->show_icons) { ?><span class="awesome-weather-stats-icon"><i class="<?php echo $weather->data['current']['icon']; ?>"></i></span><?php } ?>
		<span class="awesome-weather-current-temp"><?php echo $weather->data['current']['temp']; ?><sup>&deg;</sup></span><!-- /.awesome-weather-current-temp -->
		<span class="awe_desc"><?php echo $weather->data['current']['description']; ?></span>
	
		<?php if($weather->show_stats) { ?>
		<div class="awesome-weather-todays-stats">
			<span class="awe_humidty"><?php echo $weather->data['current']['humidity']; ?>% <?php echo $weather->t->humidity; ?></span>
			<span class="awe_wind"><?php echo $weather->t->wind; ?> <?php echo $weather->data['current']['wind_speed']; ?><?php echo $weather->data['current']['wind_speed_text']; ?> <?php echo $weather->data['current']['wind_direction']; ?></span>
			<span class="awe_highlow"><?php echo $weather->t->high; ?> <?php echo $weather->data['current']['high']; ?> &bull; <?php echo $weather->t->low; ?> <?php echo $weather->data['current']['low']; ?></span>	
		</div><!-- /.awesome-weather-todays-stats -->
		<?php } ?>	
		
	<?php } ?>	
	
	<?php if($weather->forecast_days != "hide") { ?>
	
		<div class="awesome-weather-forecast-text awe_days_<?php echo count($weather_forecast); ?> awecf">
	
			<?php foreach( $weather_forecast as $forecast ) { ?>
				<span class="awesome-weather-forecast-day-text">
					<?php if($weather->show_icons) { ?><i class="<?php echo $forecast->icon; ?>"></i><?php } ?>
					<span class="awesome-weather-forecast-day-temp-text"><?php echo $forecast->high; ?><sup>&deg;</sup></span>
					<span class="awesome-weather-forecast-day-abbr-text"><?php echo $forecast->day_of_week; ?></span>
				</span>
			<?php } ?>
	
		</div><!-- /.awesome-weather-forecast -->
	
	<?php } ?>
	
	<?php awe_extended_link( $weather ); ?>
	
	<?php awe_attribution( $weather ); ?>
	
	<?php if($weather->background_image) { ?>
		</div><!-- /.awesome-weather-cover -->
		</div><!-- /.awesome-weather-darken -->
	<?php } ?>
</div><!-- /.awesome-weather-wrap: basic -->