logo.php 770 B

12345678910111213
  1. <?php
  2. //phpcs:disable VariableAnalysis
  3. // There are "undefined" variables here because they're defined in the code that includes this file as a template.
  4. ?>
  5. <div class="akismet-masthead__logo-container">
  6. <?php if ( isset( $include_logo_link ) && $include_logo_link === true ) : ?>
  7. <a href="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>" class="akismet-masthead__logo-link">
  8. <?php endif; ?>
  9. <img class="akismet-masthead__logo" src="<?php echo esc_url( plugins_url( '../_inc/img/akismet-refresh-logo@2x.png', __FILE__ ) ); ?>" srcset="<?php echo esc_url( plugins_url( '../_inc/img/akismet-refresh-logo.svg', __FILE__ ) ); ?>" alt="Akismet logo" />
  10. <?php if ( isset( $include_logo_link ) && $include_logo_link === true ) : ?>
  11. </a>
  12. <?php endif; ?>
  13. </div>