weedops-theme/header.php
John Mizerek 2db3c63e5a Initial commit: WeedOps WordPress theme
Custom theme for weedops.site — front page, header, footer,
functions, styles, and images.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 19:28:20 -07:00

33 lines
1.4 KiB
PHP

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="WeedOps — managed home cannabis cultivation. A confidential investor overview.">
<meta name="robots" content="noindex, nofollow">
<link rel="icon" type="image/svg+xml" href="<?php echo get_template_directory_uri(); ?>/images/favicon.svg">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="site-header">
<nav class="nav-container">
<a href="<?php echo home_url(); ?>" class="logo">Weed<span>Ops</span></a>
<button class="nav-toggle" aria-label="Toggle navigation" onclick="document.querySelector('.nav-links').classList.toggle('active')">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-links">
<li><a href="<?php echo home_url('/#opportunity'); ?>">The Opportunity</a></li>
<li><a href="<?php echo home_url('/#model'); ?>">The Model</a></li>
<li><a href="<?php echo home_url('/#campus'); ?>">Campus</a></li>
<li><a href="<?php echo home_url('/#ask'); ?>">The Ask</a></li>
<li><a href="<?php echo home_url('/#deck'); ?>" class="btn-nav">Request the Deck</a></li>
</ul>
</nav>
</header>
<main>