mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-08-14 23:44:06 +00:00
18 lines
414 B
PHP
18 lines
414 B
PHP
<?php
|
|
/**
|
|
* @var $icon
|
|
* @var $url
|
|
* @var $new_window
|
|
*/
|
|
?>
|
|
|
|
<div class="sow-icon-container sow-icon">
|
|
<?php if ( ! empty( $url ) ) : ?>
|
|
<a href="<?php echo sow_esc_url( $url ) ?>" <?php if ( ! empty( $new_window ) ) echo 'target="_blank" rel="noopener noreferrer"'; ?>>
|
|
<?php endif; ?>
|
|
<?php echo siteorigin_widget_get_icon( $icon ); ?>
|
|
<?php if ( ! empty( $url ) ) : ?>
|
|
</a>
|
|
<?php endif; ?>
|
|
</div>
|