You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
660 B
21 lines
660 B
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en-US">
|
||
|
<head>
|
||
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||
|
<title>BizTime Demo</title>
|
||
|
<?php wp_head(); ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<header class="header">
|
||
|
<div class="header-wrapper wrapper swing-in-top-fwd">
|
||
|
<a href="<?php echo get_home_url(); ?>" class="logo-wrapper swing-in-top-fwd delay_01"> <span class="tag">BT</span> BizTime</a>
|
||
|
<nav class="navigation fade-in-fwd delay_02">
|
||
|
<div class="mobile-nav"></div>
|
||
|
<?php wp_nav_menu( array(
|
||
|
'theme_location' => 'primary',
|
||
|
'container' => false
|
||
|
) ); ?>
|
||
|
</nav>
|
||
|
</div>
|
||
|
</header>
|