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,25 @@
<?php
/**
* Loop item template
*/
$is_linked = $this->__is_linked();
$settings = $this->get_settings();
?>
<div class="<?php echo $this->__get_logo_classes(); ?>">
<?php
if ( $is_linked ) {
printf( '<a href="%1$s" class="jet-logo__link">', esc_url( home_url( '/' ) ) );
} else {
echo '<div class="jet-logo__link">';
}
echo $this->__get_logo_image();
echo $this->__get_logo_text();
if ( $is_linked ) {
echo '</a>';
} else {
echo '</div>';
}
?>
</div>