<?php if( !defined('ABSPATH') ){ exit(); } ?>
<!DOCTYPE html><!--[if lt IE 10]><html class="ltie10" <?php language_attributes(); ?>><![endif]--><!--[if gt IE 9]><!--><html <?php language_attributes(); ?>><!--<![endif]-->
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"/>
    <meta charset="<?php bloginfo('charset'); ?>"/>

    <!-- FAVICON -->
    <?php // wp_site_icon(); ?>

    <?php if ( is_singular() && pings_open() ) : ?>
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    <?php endif; ?>

    <?php do_action( 'rank_math/head' ); ?>

    <!--
        Fonts/CDN: preconnect | 3rd: dns-prefetch
        <link rel="preconnect" href="https://example.com" crossorigin>
    -->

    <!--
        CSS:
        <link rel="stylesheet" href="<?= get_site_url(); ?>/css/..." />
        <link rel="stylesheet" href="<?= get_template_directory_uri(); ?>/style.css" />

    -->

    <!--
        Custom header for php template:
        if( is_page_template('page-abc.php' ) ):
    -->

    <?php if ( is_user_logged_in() ) { wp_head(); } // ?>

    <!--
        Google Tags, Meta Pixel,...
    -->
</head>
<body <?php body_class(); ?> >
<?php
    wp_body_open();
    if( is_user_logged_in() ){ wp_admin_bar_render(); }
?>