site-branding.php 780 B

12345678910111213141516171819202122
  1. <div class="sticky-wrapper">
  2. <div class="site-branding-wrapper">
  3. <div class="site-branding">
  4. <?php karuna_the_custom_logo(); ?>
  5. <?php
  6. if ( is_front_page() && is_home() ) : ?>
  7. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  8. <?php else : ?>
  9. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  10. <?php
  11. endif; ?>
  12. </div><!-- .site-branding -->
  13. <?php get_template_part( 'components/navigation/navigation', 'top' ); ?>
  14. <?php
  15. if ( function_exists( 'karuna_woocommerce_header_cart' ) ) {
  16. karuna_woocommerce_header_cart();
  17. }
  18. ?>
  19. </div><!-- .site-branding-wrapper -->
  20. </div><!-- .sticky-wrapper -->