forked from LiveCarta/LiveCartaWP
49 lines
1.9 KiB
PHP
49 lines
1.9 KiB
PHP
<?php
|
|
|
|
require_once 'inc/walker-nav-menu.php';
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo('charset'); ?>">
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="<?= get_theme_file_uri('/assets/img/favicon/apple-touch-icon.png'); ?>">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<?= get_theme_file_uri('/assets/img/favicon/favicon-32x32.png'); ?>">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="<?= get_theme_file_uri('/assets/img/favicon/favicon-16x16.png'); ?>">
|
|
<link rel="manifest" href="<?= get_theme_file_uri('/assets/img/favicon/site.webmanifest'); ?>">
|
|
<link rel="mask-icon" href="<?= get_theme_file_uri('/assets/img/favicon/safari-pinned-tab.svg'); ?>" color="#5bbad5">
|
|
<link rel="shortcut icon" href="<?= get_theme_file_uri('/assets/img/favicon/favicon.ico'); ?>" type="image/x-icon">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="msapplication-config" content="<?= get_theme_file_uri('/assets/img/favicon/browserconfig.xml'); ?>">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
<body <?php body_class(); ?>>
|
|
|
|
<div class="wrapper">
|
|
|
|
<header>
|
|
<div class="cont">
|
|
<a href="<?= site_url(); ?>" class="main-logo"><img src="<?= get_theme_file_uri('/assets/img/logo.png'); ?>"></a>
|
|
|
|
<?php
|
|
if (has_nav_menu('top')) {
|
|
wp_nav_menu([
|
|
'menu' => 'top',
|
|
'menu_class' => 'navTab nav',
|
|
'container' => 'div',
|
|
'container_class' => 'header-menu',
|
|
'depth' => 1,
|
|
'walker' => new LawCarta_Walker_Nav_Menu(),
|
|
'icon_wrap' => 'i',
|
|
'theme_location' => 'top',
|
|
]);
|
|
}
|
|
?>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="content">
|