54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
|
||
<!-- Basic Page Needs
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta charset="utf-8">
|
||
|
||
<meta name="description" content="">
|
||
<meta name="author" content="">
|
||
|
||
<!-- Mobile Specific Metas
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
|
||
<?php wp_head() ?>
|
||
|
||
</head>
|
||
|
||
<body>
|
||
<header class="st-header st-main-grid">
|
||
|
||
<div class="st-header-icon-bar">
|
||
<a href="#" class="st-chip st-chip-primary">forum</a>
|
||
<a href="#" class="st-chip st-chip-secondary">join</a>
|
||
<a href="#" class="st-header-icon"><i class="fa fa-user"></i></a>
|
||
<a href="" class="st-header-icon"><i class="fa fa-search"></i></a>
|
||
<button class="st-nav-btn st-open-nav" aria-label="Open Navigation">☰</button>
|
||
</div>
|
||
|
||
<h1 class="st-site-title">Slowtwitch</h1>
|
||
|
||
|
||
<nav class="st-nav st-main-grid">
|
||
<button class="st-nav-btn st-close-nav" aria-label="Close Navigation">×</button>
|
||
<?php
|
||
wp_nav_menu(
|
||
array(
|
||
'menu' => 'primary',
|
||
'container' => '',
|
||
'theme_location' => 'primary',
|
||
'items_wrap' => '<ul class="st-nav-links">%3$s</ul>'
|
||
)
|
||
);
|
||
?>
|
||
</nav>
|
||
|
||
<div class="st-search-overlay">
|
||
|
||
</div>
|
||
</header>
|