?AlkantarClanX12
| Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/widgets/weather/templates/ |
| Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/widgets/weather/templates/item.php |
<div class="qodef-m-inner">
<div class="qodef-m-weather">
<span class="qodef-m-weather-icon fa qodef--<?php echo esc_attr( $today_description_class ); ?>"></span>
<?php drew_core_template_part( 'widgets/weather', 'templates/parts/temperature', '', $params ); ?>
</div>
<div class="qodef-m-weather-info qodef-e">
<div class="qodef-e-heading">
<?php if ( isset( $city ) && ! empty( $city ) ) { ?>
<h4 class="qodef-e-heading-city"><?php echo esc_html( $city ); ?></h4>
<?php } ?>
<?php if ( isset( $today_description ) && ! empty( $today_description ) ) { ?>
<p class="qodef-e-heading-description"><?php echo esc_html( $today_description ); ?></p>
<?php } ?>
</div>
<p class="qodef-e-humidity">
<?php echo sprintf( '%s%s%s', esc_html__( 'Humidity:', 'drew-core' ), esc_html( $today_humidity ), esc_html__( '%', 'drew-core' ) ); ?>
</p>
<p class="qodef-e-wind">
<?php echo sprintf( '%s%s%s', esc_html__( 'Wind:', 'drew-core' ), esc_html( $today_wind_speed ), esc_html( $wind_unit ) ); ?>
</p>
<p class="qodef-e-temperature qodef--high-low">
<span class="qodef-e-temperature-low">
<?php
echo sprintf(
'%s %s%s%s',
esc_html__( 'L', 'drew-core' ),
esc_html( $today_low ),
'<sup>°</sup>',
esc_html( $temp_unit )
);
?>
</span>
<span class="qodef-e-temperature-high">
<?php
echo sprintf(
'%s%s%s',
esc_html__( 'H ', 'drew-core' ),
esc_html( $today_high ),
'<sup>°</sup>',
esc_html( $temp_unit )
);
?>
</span>
</p>
</div>
</div>